aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-11-25* Adding the incoming url as Param[2] in the XmlRpcRequestlbsa711-1/+3
2008-11-19Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker4-16/+13
libOMV.
2008-11-19Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker4-13/+16
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 Casey4-16/+13
* 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-11-17* minor: add interface version to 'show version' command outputJustin Clarke Casey1-1/+4
2008-11-14Add group permissions to agent inventory.Melanie Thielker1-1/+1
Contains a migration. May contain nuts. Please back up your inventory data store. This revision changes the interface version!! No older regions can connect to these new UGAIM, and the new regions can't connect to the old UGAIM. Fixes a long-standing issue of permissions loss Currently persisted on MySQL only.
2008-11-12Change HTTP server backlog/acceptors to 64, per Adam ZMelanie Thielker1-1/+1
2008-11-11* Implement basic region filtering as described in ↵Justin Clarke Casey2-22/+19
https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html * This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
2008-11-08* Made ClientLoop non-infinite, ClientLoop will now disengage when the ↵Adam Frisby1-3/+1
client has logged out. * Cleaned up a section of LLClientView * Removed unused 'using' from HTTPServer * Please test this patch.
2008-11-08Change Version string from 0.5.11 to 0.6.0 for release.Charles Krinke1-1/+1
2008-11-08Remove empty OSUUID.cs file. Add copyright headers. Minor formatting cleanup.Jeff Ames1-1/+28
2008-11-03* Apply http://opensimulator.org/mantis/view.php?id=2535Justin Clarke Casey1-8/+37
* Catch and report deserialization exceptions on rest handlers * Thanks Diva!
2008-11-03* Use nini to pass config information to the client stack, rather than the ↵Justin Clarke Casey1-1/+0
ClientStackUserSettings class * This conforms better to other module usage
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz1-1/+12
on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs.
2008-10-29* Instead of putting 0.5.11.00000 if there is no revision, just put 0.5.11 ↵Justin Clarke Casey1-1/+1
instead * This is to make things less confusing to users (and maybe a little easier to do future version filtering for grid connections) * If there's disagreement about this, then please say so (preferably in the opensim-dev mailing list)
2008-10-28* minor: remove mono compiler warningsJustin Clarke Casey1-1/+1
2008-10-28* Apply http://opensimulator.org/mantis/view.php?id=2482Justin Clarke Casey1-3/+17
* Stop 'show threads' throwing an exception if a thread is dead
2008-10-25Fixed the cause of a hidden Exception which prevented BaseHttpServer to answerHomer Horwitz1-1/+2
when a non-existing XmlRpc method was called. Now, it will correctly respond with a faultCode/faultMessage.
2008-10-23Adding AddXmlRpcHandler(name, method, bool) to selectively disableDr Scofield1-0/+13
KeepAlive for certain XmlRpc handlers. Making use of new AddXmlRpcHandler method in RemoteAdminPlugin to avoid clients waiting indefinitely for response. taking note of BaseHttpServer parameter in CommunicationsManager constructor (was passed it but then just ignored so far).
2008-10-22- Added BaseHttpServer.StopHomer Horwitz1-0/+5
- Added "register" command to MessagingServer to re-register with the UserServer after that crashed/was restarted.
2008-10-14* Remove a warning from BaseHttpServerTeravus Ovares1-1/+1
2008-10-10* Just some OGP maintenance. Standards adherence type stuff. Teravus Ovares1-1/+34
2008-10-09* Bump server info number to 0.5.11Justin Clarke Casey1-1/+1
2008-10-08adding OSHttpResponse test case (yeah, very primitive still)Dr Scofield1-26/+175
2008-10-06cleaning up OSHttpResponse: note that read access to extra headerDr Scofield3-160/+69
fields is GONE (HttpServer does not support that), you can read the "normal" HTTP headers available via properties, and you can add headers. also, it is now possible to set a timeout for KeepAlive (for those clients that pay attention to it). this also fixes the broken REST inventory/assets/appearance services, they should be working again. testcase for OSHttpResponse will follow.
2008-10-06oops. forgot testcaseDr Scofield1-0/+249
2008-10-06cleaning up OSHttpRequest removing old Http stuff. also adding testDr Scofield3-317/+92
case for OSHttpRequest (not very fancy yet, but still).
2008-10-03* Committing a few keep-alive changes. Cleaned up some log messagesTeravus Ovares1-6/+21
2008-10-03* Fixes a http protocol violation in HttpServer in Linux. ↵Teravus Ovares1-1/+6
StringWriter.Append() vs StringWriter.Append("\r\n"); StringWriter.Append() produces "\n" in *nix* * This doesn't solve anything. Just gets the protocol right.
2008-10-03* refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey1-2/+9
for consistency's sake
2008-10-03* minor: restore the standard startup logo text now I understand why things ↵Justin Clarke Casey1-1/+1
were appearing in the wrong order
2008-10-03* oops, fix region startup to be in the correct sequence (though it appeared ↵Justin Clarke Casey1-1/+1
to work anyway)
2008-10-03* For shits and giggles, print out the time taken for a server to start up ↵Justin Clarke Casey1-0/+4
(which doesn't include stuff such as script starting time on the region server). * Yes, you could work this out from timestamps in the logs, but that's far too much work
2008-10-03* refactor: make startup a template methodJustin Clarke Casey1-2/+9
2008-10-03* minor: remove warnings (the code cleaners strike again)Justin Clarke Casey1-4/+4
2008-10-03* EventQueueGet is now working.Teravus Ovares1-10/+174
* Switched it on by default * Updated OpenSim.ini.example to reflect this * Caught a UDP Server issue that occurs when the network pipe is saturated * Still experimental :D
2008-10-02- Fix invalid cast in OSHttpRequestHomer Horwitz1-3/+3
- Web-map should work again :)
2008-10-01* Adds error handlers for errors parsing the querystring passed on the ↵Teravus Ovares1-3/+18
OSHttpRequest constructor. * maybe.. it was a key that was null. Obviously you can't still a null key in a string key'ed collection.
2008-10-01* Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares1-3/+3
standalone where port wasn't the http port. * Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
2008-09-30* Replacing Net.HttpListener with HttpServer. Teravus Ovares3-84/+286
* This is a HUGE update.. and should be considered fraut with peril. * SSL Mode isn't available *yet* but I'll work on that next. * DrScofld is still working on a radical new thread pump scheme for this which will be implemented soon. * This could break the Build! This could break your Grid!
2008-09-30* Get the code up to speed with my -#dev e-mail example. (uncomment out ↵Teravus Ovares2-4/+34
lines 227 - 235 to test.
2008-09-29* minor: remove warningsJustin Clarke Casey1-6/+7
2008-09-27* Event queue is now polling.. Teravus Ovares1-2/+4
* returns FAKEEVENT instead of the connection returning a 502. It doesn't like our 502's for some reason.. so, in leau of this.. send it a fake event. * Once again, this is still 'really early' code, so please don't blame us if you have no more threads left.
2008-09-27* This is the very very early beginnings of an EventQueue:get module.Teravus Ovares3-5/+155
* This won't function yet as far as the client can tell.. because it doesn't respond to the first query with a 200 message. * We have to figure out how to encode those binary values in the example code in the module... * Committing this so we have a start point. Will continue to work on this more today.
2008-09-25Mantis#2017. Thank you kindly, Tyre, for a patch that solves:Charles Krinke2-11/+4
Check the client dialog box (from top menu) WORLD / REGION ESTATE / REGION tab. The client dialog box seems to have a hard limit of about 32 characters per line available for displaying the region version number. Our regions are sending a string which is greater than the limit, causing the client to wrap the text and look ugly.
2008-09-25temporarily disabling HttpServer related stuff (take #2: Exclude takesDr Scofield2-48/+48
regex not shell glob)
2008-09-25* Remove a message handler Teravus Ovares1-0/+2
* Add a more specific error handler for when we're unable to pull the OGP state * rez_avatar/derez ?
2008-09-23* OGP GET, look for Accept header application/llsd+xml with an optional ?q=Teravus Ovares1-1/+1
2008-09-23* Fix a null reference exception that I introducedTeravus Ovares1-1/+1
2008-09-23* Get Requests for OGP don't have a Content-type: application/llsd+xml, they ↵Teravus Ovares1-0/+12
have an Accept: application/llsd+xml.