aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Neighbour/NeighbourServicesConnector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* shut up some pesty warningsUbitUmarov2018-01-151-1/+2
|
* let StreamReader be in using statementsUbitUmarov2017-05-071-1/+1
|
* Merge of ubitworkvarnew with opensim/master as of 20150905.Robert Adams2015-09-081-1/+1
|\ | | | | | | | | | | | | | | This integrates the OpenSim refactoring to make physics, etc into modules. AVN physics hasn't been moved to new location. Does not compile yet. Merge branch 'osmaster' into mbworknew1
| * Deleted OpenSim.Framework.Communications. Moved its two remaining files to ↵Diva Canto2015-09-041-1/+1
| | | | | | | | OpenSim.Framework.
* | seems to compile ( tests comented out)UbitUmarov2015-09-021-6/+0
| |
* | bad merge?UbitUmarov2015-09-011-0/+6
|\ \ | |/ |/|
| * Merge branch 'master' into careminsterMelanie2013-08-171-5/+5
| |\ | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs OpenSim/Services/Connectors/Neighbour/NeighbourServicesConnector.cs
| * \ Merge branch 'master' into careminsterMelanie2013-02-271-17/+17
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs
| * | | Squash reporting HelloNeighbor exception - it simply means the other simMelanie2012-11-021-4/+4
| | | | | | | | | | | | | | | | is down, no need for yellow ink.
* | | | Better error messagesOren Hurvitz2014-03-241-15/+15
| | | | | | | | | | | | | | | | This resolves http://opensimulator.org/mantis/view.php?id=6936
* | | | Merge branch 'justincc-master'Justin Clark-Casey (justincc)2014-01-311-2/+2
|\ \ \ \
| * | | | Make sure Web streams are disposed after useOren Hurvitz2014-01-311-2/+2
| | |_|/ | |/| |
* | | | varregion: many replacements of in-place arithmetic with calls toRobert Adams2013-11-281-1/+1
|/ / / | | | | | | | | | | | | the Util functions for converting world addresses to region addresses and converting region handles to locations.
* | | minor: Make log messages consistent in NeighbourServicesConnectorJustin Clark-Casey (justincc)2013-08-171-6/+6
| |/ |/|
* | Make sure we dispose of WebResponse, StreamReader and Stream in various ↵Justin Clark-Casey (justincc)2013-02-271-17/+17
| | | | | | | | places where we were not already.
* | Revert "Added request.Proxy=null everywhere, as discussed in ↵Diva Canto2012-09-301-1/+0
| | | | | | | | | | | | | | | | http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow." But the patch is here, in case anyone wants to try it. This reverts commit 531edd51d82ecd6a842a2611c99e9919634491ef.
* | Added request.Proxy=null everywhere, as discussed in ↵Diva Canto2012-09-301-0/+1
|/ | | | | | http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow. Thanks R.Gunther (rigun@rigutech.nl) https://lists.berlios.de/pipermail/opensim-users/2012-September/010986.html
* Rather than instantiating a UTF8 encoding everywhere when we want to supress ↵Justin Clark-Casey (justincc)2012-07-131-2/+1
| | | | | | the BOM, use a single Util.UTF8NoBomEncoding. This class is thread-safe (as evidenced by the provision of the system-wide Encoding.UTF8 which does not suppress BOM on output).
* Where necessary, rename OpenSim/Services/Connectors/*.cs files to reflect ↵Justin Clark-Casey (justincc)2012-05-091-0/+206
the actual class names. This is usually because the file name was singular (*Service*) but the class name was plural (*Services*). This is to make configuration easier rather than having to look in the c# code itself to find the slightly different name of the connector. This does not affect existing configuration since the files are being renamed rather than the classes.