aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make number of inbound http requests handled available as a ↵Justin Clark-Casey (justincc)2013-06-181-5/+25
| | | | httpserver.<port>.IncomingHTTPRequestsProcessed stat
* refactor: Move existing code to generate report information on the ↵Justin Clark-Casey (justincc)2013-06-171-1/+62
| | | | threadpool to the ServerBase rather than being in Util
* Make general server stats available on the robust console as well as the ↵Justin Clark-Casey (justincc)2013-06-172-33/+45
| | | | | | simulator console This means the "show stats" command is now active on the robust console.
* Implement logging of first 80 characters (debug level 5) or full body data ↵Justin Clark-Casey (justincc)2013-06-121-3/+5
| | | | | | | (debug level 6) on outgoing requests, depending on debug level This is set via "debug http out <level>" This matches the existing debug level behaviours for logging incoming http data
* Add port numbers to poll service thread names so that we can tell which ↵Justin Clark-Casey (justincc)2013-06-101-2/+2
| | | | belong to which HttpServer
* Reinstate explicit starting and stopping of PollServiceRequestManager added ↵Justin Clark-Casey (justincc)2013-06-102-4/+7
| | | | | | | | in 3eee991 but removed in 7c0bfca Do not rely on destructors to stop things. These fire at unpredictable times and cause problems such as http://opensimulator.org/mantis/view.php?id=6503 and most probably http://opensimulator.org/mantis/view.php?id=6668
* Supply proper type information for the various types of requestsMelanie2013-06-071-3/+1
|
* Adding Avination's PollService to round out the HTTP inventory changesMelanie2013-06-074-226/+209
|
* If OpenSimulator is writing a PID file and finds the file already present on ↵Justin Clark-Casey (justincc)2013-04-091-0/+5
| | | | | | startup, logging an error since this is commonly due to an unclean shutdown. Unclean shutdown can cause constantly moving objects to disappear if an OAR has just been loaded and they have not reached persistence time threshold, among other problems.
* * In between the fog, a moment of clarity. This fixes mantis 6570teravus2013-04-041-1/+1
|
* *Yet another HTTPServer update code changes in OpenSim Libs. * This fixes a ↵teravus2013-03-161-3/+14
| | | | connection close issue by getting rid of the socket references * This adds a connection timeout checker to shutdown poor or evil connections and combats DOS attempts that just connect and make no complete requests and just wait. It also actually implements KeepAlive... instead of just understanding the connection header in the request... you can test by connecting and requesting a keepalive header and sending another request on the same connection. The new timeout checker closes expired keepalive sessions, just make sure you send the request within 70 seconds of connecting or the timeout checker will timeout the connection.
* Log same environment information to Robust log as is already done for ↵Justin Clark-Casey (justincc)2013-03-142-11/+21
| | | | simulator logs, for debug purposes
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimBlueWall2013-03-051-1/+16
|\
| * * Add a Max Payload size property to the Websocket Server Handler. If you ↵teravus2013-03-051-1/+16
| | | | | | | | would like to restrict the maximum packet size, (and therefore protect against Memory DOSing) then you should set this. I defaulted it to 40MB. This means that in theory, a malicious user could connect and send a packet that claims that the payload is up to 40 mb (even if it doesn't actually turn out to be 40mb. More testing needs to be done on it where the packets are maliciously malformed.
* | Add method to remove JsonRpc Handlers from the serverBlueWall2013-03-032-0/+8
|/
* Show http poll handlers in separate http (poll) section of "show ↵Justin Clark-Casey (justincc)2013-02-271-2/+5
| | | | | | http-handlers" console command instead of never showing them (due to a previous bug). The code was assuming that poll handlers were also included in general http handlers but this was not the case.
* Make sure we dispose of WebResponse, StreamReader and Stream in various ↵Justin Clark-Casey (justincc)2013-02-271-12/+3
| | | | places where we were not already.
* Deleted all AssemblyFileVersion directivesDiva Canto2013-02-191-1/+1
|
* * gracefully handle a Situation where a double close is called on the ↵teravus2013-02-141-0/+2
| | | | WebSocket handler
* * Adds Websocket support to baseHttpServer and IHttpServer.cs . This ↵teravus2013-02-074-3/+13
|\ | | | | | | allows modules to set up a websocket server that websocket clients can connect to. An example module is in OptionalModules/Example/WebSocketEchoTest/WebSocketEchoModule.cs
| * Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)2013-02-053-3/+3
| | | | | | | | | | | | | | | | This is mostly Bluewall's work but I am also bumping the general version number OpenSimulator 0.7.5 remains in the release candidate stage. I'm doing this because master is significantly adding things that will not be in 0.7.5 This update should not cause issues with existing external binary DLLs because our DLLs do not have strong names and so the exact version match requirement is not in force.
* | This is the final commit that enables the Websocket handlerteravus2013-02-072-2/+1095
| |
* | We're not really done here.. but we're getting there. Socket Read is ↵teravus2013-02-052-1/+42
|/ | | | working.. Still have to do Header.ToBytes and compose a websocket frame with a payload.
* Merge branch 'master' of /home/opensim/var/repo/opensimBlueWall2013-01-232-5/+15
|\
| * Explicitly stop PollServiceRequestManager() rather than relying on its ↵Justin Clark-Casey (justincc)2013-01-192-5/+15
| | | | | | | | | | | | destructor. Hopes to address occasional shutdown failures from http://opensimulator.org/mantis/view.php?id=6503
* | Add additional return statusBlueWall2013-01-232-4/+23
|/ | | | Adding additional return status for JsonRpcMethod. Now returns true/false
* Add Json-Rpc 2.0 To Registered HandlersBlueWall2013-01-155-0/+298
| | | | | Added registration json-rpc handlers in the http server. Covers version 2.0 See: http://www.jsonrpc.org/specification
* In BaseHttpServer.HandleRequest(), use Culture.SetCurrentCulture() rather ↵Justin Clark-Casey (justincc)2012-12-051-1/+1
| | | | than creating a new CultureInfo separately
* Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)2012-11-242-2/+4
| | | | automatically turns off any logging enabled between tests
* Make "show threads" and "thread abort" console commands available on all serversJustin Clark-Casey (justincc)2012-11-232-102/+93
|
* Make "force gc" console command available across all serversJustin Clark-Casey (justincc)2012-11-232-11/+12
|
* Make "show version" console command available across all serversJustin Clark-Casey (justincc)2012-11-232-8/+7
|
* Delete unused BaseHttpServer.HandleAgentRequest()Justin Clark-Casey (justincc)2012-11-231-53/+0
|
* Factor out command script code.Justin Clark-Casey (justincc)2012-11-221-2/+50
| | | | This also allows comments in command scripts (lines starting with ;, # or //) to be used across all servers
* Make "config show/set/get/save" console commands available on all serversJustin Clark-Casey (justincc)2012-11-221-3/+137
|
* Factor out common pid file creation and removal code.Justin Clark-Casey (justincc)2012-11-222-40/+47
| | | | Log path at which pid file is created or reason for failure to create.
* Add "get log level" command - this returns the current server session ↵Justin Clark-Casey (justincc)2012-11-221-19/+31
| | | | | | console logging level. This supersedes getting information by calling "set log level" without a 4th argument, which is confusing.
* Remove unused BaseOpenSimServer.ShowHelp()Justin Clark-Casey (justincc)2012-11-221-21/+0
|
* Make "set log level" command available across all serversJustin Clark-Casey (justincc)2012-11-222-31/+31
|
* Make "show info" command available across all serversJustin Clark-Casey (justincc)2012-11-222-179/+183
| | | | This helpfully lists version information, startup location and console log level
* Factor out common registration of "show uptime" commandJustin Clark-Casey (justincc)2012-11-222-66/+76
|
* factor out common HandleShow code for "show uptime"Justin Clark-Casey (justincc)2012-11-222-34/+55
|
* refactor: Factor out copy/pasted server uptime report codeJustin Clark-Casey (justincc)2012-11-222-25/+62
|
* minor: If logging full incoming HTTP data, don't deceptively print ... at ↵Justin Clark-Casey (justincc)2012-11-201-2/+5
| | | | the end of the body.
* A few more AssemblyInfos in a few more dlls.Diva Canto2012-11-142-0/+66
|
* Add "force gc" region console command which manually invokes garbage collection.Justin Clark-Casey (justincc)2012-10-291-0/+11
| | | | For debugging purposes.
* minor: Get content type handler logger to log "unset" for the content type ↵Justin Clark-Casey (justincc)2012-10-231-1/+1
| | | | instead of blank if no content type was set.
* minor: Use LogIncomingToContentTypeHandler() method for incoming HTTP data ↵Justin Clark-Casey (justincc)2012-10-231-8/+2
| | | | | | where this wasn't already used. This allows log level 5 (log sample or large part of incoming post data) to operate and removes copy/paste.
* If we're avoiding printing a long request warning for a GetTexture CAP call, ↵Justin Clark-Casey (justincc)2012-10-181-1/+1
| | | | | | check we received a request handler first since this is not guaranteed. Resolves harmless logged exception when content type and generic xml rpc requests take more than 3 seconds.
* Extend "show stats" command to "show stats [list|all|<category name>]"Justin Clark-Casey (justincc)2012-10-111-28/+4
| | | | | | This allows different categories of stats to be shown, with options to list categories or show all stats. Currently categories are scene and simulator and only a very few stats are currently registered via this mechanism. This commit also adds percentage stats for packets and blocks reused from the packet pool.