aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-01-31Change 0.7.6.1 flavour to release0.7.6.1Justin Clark-Casey (justincc)1-1/+1
2014-01-24Change version to 0.7.6.1-rc1 insteadJustin Clark-Casey (justincc)1-1/+1
2014-01-24Change version to 0.7.6.1 and type to ReleaseJustin Clark-Casey (justincc)1-2/+2
2013-10-04Change 0.7.6 release flavour to post fixesJustin Clark-Casey (justincc)1-1/+1
2013-10-04Update flavour to release0.7.6-releaseJustin Clark-Casey (justincc)1-1/+1
2013-09-27Flip release version to RC10.7.6-rc1Justin Clark-Casey (justincc)1-1/+1
2013-08-17remove mono compiler warnings from PollServiceRequestManagerJustin Clark-Casey (justincc)1-4/+2
2013-08-06Add "debug threadpool status" console command to show min/max/current ↵Justin Clark-Casey (justincc)1-0/+23
worker/iocp threadpool numbers
2013-08-05Add "debug comms status" command to show current debug comms settingsJustin Clark-Casey (justincc)1-0/+11
2013-08-05Make it possible to switch whether we serialize osd requests per endpoint or ↵Justin Clark-Casey (justincc)1-0/+37
not, either via config (SerializeOSDRequests in [Network]) or via the "debug comms set" console command. For debug purposes to assess what impact this has on network response in a heavy test environment.
2013-08-05minor: move "threads abort" and "force gc" console commands into debug ↵Justin Clark-Casey (justincc)1-2/+2
category - these are not things one needs to do in normal operation
2013-08-05Make it possible to set worker/iocp min/max threadpool limits on the fly ↵Justin Clark-Casey (justincc)1-0/+78
with the console command "debug threadpool set"
2013-08-05Add checks monitoring framework to provide alerts if certain conditions do ↵Justin Clark-Casey (justincc)1-0/+1
not hold. Not yet in use.
2013-07-26Increased the rate of the PollServiceRequestManager to 0.5 secs (it was ↵Diva Canto1-1/+1
1sec). Group chat is going over the EQ... Hopefully this won't increase CPU when there's nothing going on, but we need to watch for that.
2013-07-26Fix regression tests relating to agent transfer by making simulator use last ↵Justin Clark-Casey (justincc)1-0/+5
week's SIMULATOR/0.1 protocol for now.
2013-07-21Removed verbose debug from previous commitDiva Canto1-1/+0
2013-07-21PollServiceRequestManager: changed the long poll from a Queue to a List. No ↵Diva Canto1-13/+17
need to dequeue and enqueue items every 1sec.
2013-07-21Delay the enqueueing of non-longpoll requests for 100ms. No need to have ↵Diva Canto1-1/+11
these requests actively on the processing queue if it seems they're not ready.
2013-07-18Changed the timoeut of EQ 502s (no events) to 50 secs. The viewer post ↵Diva Canto1-1/+1
requests timeout in 60 secs. There's plenty of room for improvement in handling the EQs. Some other time...
2013-07-18Revert "Revert "Putting the requests back in the queue while testing for ↵Diva Canto1-3/+7
count >0 is not the smartest move..."" This reverts commit 71278919575b0e0222cdbe3c0cefa5919f9a75bc.
2013-07-18Reverting the reverts I did yesterday. cpu-branch has now beenDiva Canto2-48/+35
successfully tested, and I'm merging back those changes, which proved to be good. Revert "Revert "Cleared up much confusion in PollServiceRequestManager. Here's the history:"" This reverts commit fa2370b32ee57a07f27501152c3c705a883b13d8.
2013-07-17Revert "Cleared up much confusion in PollServiceRequestManager. Here's the ↵Diva Canto2-35/+48
history:" This reverts commit e46459ef21e1ee5ceaeca70365a7c881d33b09ce.
2013-07-17Revert "Putting the requests back in the queue while testing for count >0 is ↵Diva Canto1-7/+3
not the smartest move..." This reverts commit f4317dc26d670c853d0ea64b401b00f718f09474.
2013-07-17Revert "Now trying DoubleQueue instead of BlockingQueue for the ↵Diva Canto1-2/+2
PollServiceRequestManager." This reverts commit 5f95f4d78e8c7d17b8ba866907156fe6d4444c04.
2013-07-17Revert "This is a completely unreasonable thing to do, effectively defying ↵Diva Canto1-52/+40
the purpose of BlockingQueues. Trying this, to see the effect on CPU." This reverts commit 5232ab0496eb4fe6903a0fd328974ac69df29ad8.
2013-07-17This is a completely unreasonable thing to do, effectively defying the ↵Diva Canto1-40/+52
purpose of BlockingQueues. Trying this, to see the effect on CPU.
2013-07-17Now trying DoubleQueue instead of BlockingQueue for the ↵Diva Canto1-2/+2
PollServiceRequestManager.
2013-07-17Putting the requests back in the queue while testing for count >0 is not the ↵Diva Canto1-3/+7
smartest move...
2013-07-17Cleared up much confusion in PollServiceRequestManager. Here's the history:Diva Canto2-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-15Add 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-08Add missing file BaseOutputStreamHandler.cs from recent commit e19defdJustin Clark-Casey (justincc)1-0/+60
2013-07-08BaseHttpServer: if the handler sets the content length, don't override it. ↵Diva Canto1-1/+1
This happens in HEAD handlers.
2013-07-08Add "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-20minor: remove mono compiler warnings in WebsocketServerHandler.csJustin Clark-Casey (justincc)1-13/+7
2013-06-19Display 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-18Make number of inbound http requests handled available as a ↵Justin Clark-Casey (justincc)1-5/+25
httpserver.<port>.IncomingHTTPRequestsProcessed stat
2013-06-17refactor: 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-17Make 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-12Implement 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-10Add 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-10Reinstate 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-07Supply proper type information for the various types of requestsMelanie1-3/+1
2013-06-07Adding Avination's PollService to round out the HTTP inventory changesMelanie4-226/+209
2013-04-09If 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 6570teravus1-1/+1
2013-03-16*Yet another HTTPServer update code changes in OpenSim Libs. * This fixes a ↵teravus1-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-14Log 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 ↵teravus1-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-03Add method to remove JsonRpc Handlers from the serverBlueWall2-0/+8
2013-02-27Show 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.