aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Map/MapAddServerConnector.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-12/+17
2017-05-22 check XFF headers of caller, but be quiet about themUbitUmarov1-3/+3
2017-05-07let StreamReader be in using statementsUbitUmarov1-3/+3
2017-01-05Massive tab and trailing space cleanupMelanie Thielker1-1/+1
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-22/+13
2015-09-02seems to compile ( tests comented out)UbitUmarov1-15/+2
2015-08-29 change default scopeID to UUID.ZeroUbitUmarov1-1/+2
2015-03-29varregion: any conversions of use of Constants.RegionSize converted intoRobert Adams1-1/+1
Util.cs routines to convert region coords to and from world coords or handles.
2014-08-23Change the map tile system to be multi-grid hosting compatibleMelanie Thielker1-1/+4
Conflicts: OpenSim/Server/Handlers/Map/MapRemoveServerConnector.cs
2014-08-23Change the map tile system to be multi-grid hosting compatibleMelanie Thielker1-1/+4
2014-07-21Close streams immediately when we finish using themOren Hurvitz1-13/+2
2014-05-23Adds optional HTTP Basic Authentication to Robust service connectors.Diva Canto1-3/+5
2013-11-28varregion: many replacements of in-place arithmetic with calls toRobert Adams1-5/+5
the Util functions for converting world addresses to region addresses and converting region handles to locations.
2013-07-08Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)1-1/+1
to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
2012-04-27MapImageService: changed the event at which the map tiles are uploaded, ↵Diva Canto1-2/+2
because they were being uploaded before the region was registered with the grid
2012-04-27MapImage security issue. Compare strings instead of IPAddresses.Diva Canto1-1/+1
2012-04-27MapImage security issue: better error messagesDiva Canto1-3/+5
2012-04-27Amend to last commit: account for the existence of proxies.Diva Canto1-3/+32
2012-04-27MapImageService: added an additional security check for OSGrid and other ↵Diva Canto1-5/+43
grids like it.
2011-12-05Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)1-1/+1
of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
2011-11-19Improve some grid region log messages to express regions at co-ordinate ↵Justin Clark-Casey (justincc)1-5/+9
(e.g. 1000, 1000) rather than meter positions (256000, 256000)
2011-06-13V2 map now working in grids too. WARNING: A few visible configuration ↵Diva Canto1-1/+123
variables added in order for this to work. See .ini.example changes
2011-06-12First pass at making the V2 map work. Standalones only for now. There are ↵Diva Canto1-7/+7
some issues with the zoom level -- TBD.
2009-09-29Fix loading modules with alternate configurations and ports into ROBUST.Melanie1-5/+6
Make all current modules support the configuration name option
2009-09-29Fix loading modules with alternate configurations and ports into ROBUST.Melanie1-5/+6
Make all current modules support the configuration name option
2009-09-24Added test GridClient, which allowed me to remove a few bugs out of the new ↵Diva Canto1-1/+1
code.
2009-09-22Added HGGridConnector and related code.Diva Canto1-1/+1
2009-09-21Added grid handler and grid remote connector.Diva Canto1-9/+9
2009-09-04Implement plain password authentication partway. Tested, but no userMelanie1-1/+1
functionality yet.
2009-09-04More work on new authentication serviceMelanie1-3/+3
2009-06-04Comment out unused variables / private fields to avoid compiler warnings.Jeff Ames1-4/+3
2009-06-03Committing the partial refactor of authentication services. No user functionlityMelanie Thielker1-14/+11
will eat your babies, etc
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-22Cleaning up a few HG things. HG Posts may now work in grids, but if the home ↵diva1-0/+1
grid is a standalone, this still doesn't work -- something wrong with RegionAssetService's DB connection.
2009-05-18This commit changes the way the new server works. There is no longer a serverMelanie Thielker1-2/+4
exe for each function, rather each function is a connector and the server ini loads them. If you like your multiple processes, use -inifile with the server. Otherwise, you get one server process that serves all configured funcions, see example .ini. The new exe is OpenSim.Server.exe. Clean your bin, loads of names have changed!
2009-05-18Refactor: Change "Servers" to "Server", since the can only be one. BreakMelanie Thielker1-3/+2
the handlers out of the asset server context into a generic scope.
2009-05-18Nonowrking intermadiate commit,, DO NOT USEMelanie Thielker1-0/+0
2009-05-18Logically group the server connector with it's handlersMelanie Thielker1-1/+1
2009-05-14Move the server request handlers into a separate lib nunit can digestMelanie Thielker1-0/+1
2009-05-11Smooth out some .ini stuff, actually commit the exampleMelanie Thielker1-1/+1
2009-05-09Add the asset service connectors and sample config. READ WARNINGS!!!Melanie Thielker1-2/+17
2009-05-08The new asset server now actually serves existing assetsMelanie Thielker1-0/+2
2009-05-08More additions to the nextgen reference UGAIMMelanie Thielker1-6/+6
2009-05-05Some refactoring. Database is now active in the new user serverMelanie Thielker1-2/+2
2009-05-05Plumb the new server connector logicMelanie Thielker1-6/+9
2008-11-19Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker1-1/+1
libOMV.
2008-11-19Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker1-1/+1
release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
2008-11-17* Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey1-1/+1
* Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-3/+3
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby1-2/+2
with namespaces.