Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-07-17 | Now trying DoubleQueue instead of BlockingQueue for the ↵ | Diva Canto | 1 | -2/+2 | |
PollServiceRequestManager. | |||||
2013-07-17 | Putting the requests back in the queue while testing for count >0 is not the ↵ | Diva Canto | 1 | -3/+7 | |
smartest move... | |||||
2013-07-17 | Cleared up much confusion in PollServiceRequestManager. Here's the history: | Diva Canto | 2 | -48/+35 | |
When Melanie added the web fetch inventory throttle to core, she made the long poll requests (EQs) effectively be handled on an active loop. All those requests, if they existed, were being constantly dequeued, checked for events (which most often they didn't have), and requeued again. This was an active loop thread on a 100ms cycle! This fixes the issue. Now the inventory requests, if they aren't ready to be served, are placed directly back in the queue, but the long poll requests aren't placed there until there are events ready to be sent or timeout has been reached. This puts the LongPollServiceWatcherThread back to 1sec cycle, as it was before. | |||||
2013-07-15 | Add request received/handling stats for caps which are served by http poll ↵ | Justin Clark-Casey (justincc) | 4 | -50/+69 | |
handlers. This adds explicit cap poll handler supporting to the Caps classes rather than relying on callers to do the complicated coding. Other refactoring was required to get logic into the right places to support this. | |||||
2013-07-08 | Add missing file BaseOutputStreamHandler.cs from recent commit e19defd | Justin Clark-Casey (justincc) | 1 | -0/+60 | |
2013-07-08 | BaseHttpServer: if the handler sets the content length, don't override it. ↵ | Diva Canto | 1 | -1/+1 | |
This happens in HEAD handlers. | |||||
2013-07-08 | Add "show caps stats by user" and "show caps stats by cap" console commands ↵ | Justin Clark-Casey (justincc) | 7 | -16/+51 | |
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 | |||||
2013-06-20 | minor: remove mono compiler warnings in WebsocketServerHandler.cs | Justin Clark-Casey (justincc) | 1 | -13/+7 | |
2013-06-19 | Display existing statistic of how many http requests a server is making as ↵ | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
server.network.HTTPRequestsMade in "show stats all" | |||||
2013-06-18 | Make number of inbound http requests handled available as a ↵ | Justin Clark-Casey (justincc) | 1 | -5/+25 | |
httpserver.<port>.IncomingHTTPRequestsProcessed stat | |||||
2013-06-17 | refactor: Move existing code to generate report information on the ↵ | Justin Clark-Casey (justincc) | 1 | -1/+62 | |
threadpool to the ServerBase rather than being in Util | |||||
2013-06-17 | Make general server stats available on the robust console as well as the ↵ | Justin Clark-Casey (justincc) | 2 | -33/+45 | |
simulator console This means the "show stats" command is now active on the robust console. | |||||
2013-06-12 | Implement logging of first 80 characters (debug level 5) or full body data ↵ | Justin Clark-Casey (justincc) | 1 | -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 | |||||
2013-06-10 | Add port numbers to poll service thread names so that we can tell which ↵ | Justin Clark-Casey (justincc) | 1 | -2/+2 | |
belong to which HttpServer | |||||
2013-06-10 | Reinstate explicit starting and stopping of PollServiceRequestManager added ↵ | Justin Clark-Casey (justincc) | 2 | -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 | |||||
2013-06-07 | Supply proper type information for the various types of requests | Melanie | 1 | -3/+1 | |
2013-06-07 | Adding Avination's PollService to round out the HTTP inventory changes | Melanie | 4 | -226/+209 | |
2013-04-09 | If OpenSimulator is writing a PID file and finds the file already present on ↵ | Justin Clark-Casey (justincc) | 1 | -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. | |||||
2013-04-04 | * In between the fog, a moment of clarity. This fixes mantis 6570 | teravus | 1 | -1/+1 | |
2013-03-16 | *Yet another HTTPServer update code changes in OpenSim Libs. * This fixes a ↵ | teravus | 1 | -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. | |||||
2013-03-14 | Log same environment information to Robust log as is already done for ↵ | Justin Clark-Casey (justincc) | 2 | -11/+21 | |
simulator logs, for debug purposes | |||||
2013-03-05 | * Add a Max Payload size property to the Websocket Server Handler. If you ↵ | teravus | 1 | -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. | |||||
2013-03-03 | Add method to remove JsonRpc Handlers from the server | BlueWall | 2 | -0/+8 | |
2013-02-27 | Show http poll handlers in separate http (poll) section of "show ↵ | Justin Clark-Casey (justincc) | 1 | -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. | |||||
2013-02-27 | Make sure we dispose of WebResponse, StreamReader and Stream in various ↵ | Justin Clark-Casey (justincc) | 1 | -12/+3 | |
places where we were not already. | |||||
2013-02-19 | Deleted all AssemblyFileVersion directives | Diva Canto | 1 | -1/+1 | |
2013-02-14 | * gracefully handle a Situation where a double close is called on the ↵ | teravus | 1 | -0/+2 | |
WebSocket handler | |||||
2013-02-07 | This is the final commit that enables the Websocket handler | teravus | 2 | -2/+1095 | |
2013-02-05 | We're not really done here.. but we're getting there. Socket Read is ↵ | teravus | 2 | -1/+42 | |
working.. Still have to do Header.ToBytes and compose a websocket frame with a payload. | |||||
2013-02-05 | Bump version and assembly version numbers from 0.7.5 to 0.7.6 | Justin Clark-Casey (justincc) | 3 | -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. | |||||
2013-02-01 | Revert "Update assembly version numbers" | BlueWall | 2 | -2/+2 | |
This reverts commit 141ad829f448b9138b12be7cf99c834c1f3977ec. | |||||
2013-02-01 | Update assembly version numbers | BlueWall | 2 | -2/+2 | |
2013-01-23 | Add additional return status | BlueWall | 2 | -4/+23 | |
Adding additional return status for JsonRpcMethod. Now returns true/false | |||||
2013-01-19 | Explicitly stop PollServiceRequestManager() rather than relying on its ↵ | Justin Clark-Casey (justincc) | 2 | -5/+15 | |
destructor. Hopes to address occasional shutdown failures from http://opensimulator.org/mantis/view.php?id=6503 | |||||
2013-01-15 | Add Json-Rpc 2.0 To Registered Handlers | BlueWall | 5 | -0/+298 | |
Added registration json-rpc handlers in the http server. Covers version 2.0 See: http://www.jsonrpc.org/specification | |||||
2012-12-05 | In BaseHttpServer.HandleRequest(), use Culture.SetCurrentCulture() rather ↵ | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
than creating a new CultureInfo separately | |||||
2012-11-24 | Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵ | Justin Clark-Casey (justincc) | 2 | -2/+4 | |
automatically turns off any logging enabled between tests | |||||
2012-11-23 | Make "show threads" and "thread abort" console commands available on all servers | Justin Clark-Casey (justincc) | 2 | -102/+93 | |
2012-11-23 | Make "force gc" console command available across all servers | Justin Clark-Casey (justincc) | 2 | -11/+12 | |
2012-11-23 | Make "show version" console command available across all servers | Justin Clark-Casey (justincc) | 2 | -8/+7 | |
2012-11-23 | Delete unused BaseHttpServer.HandleAgentRequest() | Justin Clark-Casey (justincc) | 1 | -53/+0 | |
2012-11-22 | Factor out command script code. | Justin Clark-Casey (justincc) | 1 | -2/+50 | |
This also allows comments in command scripts (lines starting with ;, # or //) to be used across all servers | |||||
2012-11-22 | Make "config show/set/get/save" console commands available on all servers | Justin Clark-Casey (justincc) | 1 | -3/+137 | |
2012-11-22 | Factor out common pid file creation and removal code. | Justin Clark-Casey (justincc) | 2 | -40/+47 | |
Log path at which pid file is created or reason for failure to create. | |||||
2012-11-22 | Add "get log level" command - this returns the current server session ↵ | Justin Clark-Casey (justincc) | 1 | -19/+31 | |
console logging level. This supersedes getting information by calling "set log level" without a 4th argument, which is confusing. | |||||
2012-11-22 | Remove unused BaseOpenSimServer.ShowHelp() | Justin Clark-Casey (justincc) | 1 | -21/+0 | |
2012-11-22 | Make "set log level" command available across all servers | Justin Clark-Casey (justincc) | 2 | -31/+31 | |
2012-11-22 | Make "show info" command available across all servers | Justin Clark-Casey (justincc) | 2 | -179/+183 | |
This helpfully lists version information, startup location and console log level | |||||
2012-11-22 | Factor out common registration of "show uptime" command | Justin Clark-Casey (justincc) | 2 | -66/+76 | |
2012-11-22 | factor out common HandleShow code for "show uptime" | Justin Clark-Casey (justincc) | 2 | -34/+55 | |