aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | Some additional protection, it seems that responsedata needs to be locked, ↵Tom2011-05-261-2/+13
| | | | | | | | but I can't immediately see where it's being accessed from another thread. For now, this will protect the server
* | Also fix the locking of url.requests and tidy the locks in generalTom2011-05-171-23/+31
| |
* | Lock m_requestMap properly to prevent some nasty access errors and the ↵Tom2011-05-171-30/+51
| | | | | | | | resulting downward spiral
* | Merge branch 'master' into careminster-presence-refactorMelanie2011-05-081-5/+56
|\ \ | |/
| * Add support for llRequestSecureURL() if ssl is enabledBlueWall2011-05-051-5/+56
| |
* | Since we've plugged the leak, now increase URLs to 5000 since the limit is ↵Tom2011-03-211-1/+1
| | | | | | | | being hit in several sims
* | Repair x-query-stringTom2011-02-031-1/+1
| |
* | Fix cm/15627 : Don't block the entire URL on duplicate requests, just that ↵Tom2011-01-311-3/+3
| | | | | | | | particular request!
* | Ignore duplicate llHTTPResponse calls to the same request. Prevents response ↵Tom2011-01-291-4/+9
| | | | | | | | corruption. Only the first llHTTPResponse call is obeyed, akin to SL.
* | Significantly increase the total number of URL's available. In second life, ↵Tom2011-01-281-1/+1
| | | | | | | | the limit is 15,000 URL's (one per prim), so i'd hope we can manage 1k.
* | Fix a discrepancy vs. SL with parsing x-query-stringTom2011-01-281-1/+8
| |
* | Now, fix the slash issue the right way. Our URLs now work like SL'sMelanie Thielker2010-07-031-5/+5
| |
* | Re-add the slashes at the end of the URL. Too much depends on themMelanie Thielker2010-07-031-2/+2
| |
* | ANother stab at LSL compatibilityMelanie Thielker2010-07-011-1/+1
| |
* | Remove trailing slash from HTTP URLs to be compatible with SLMelanie Thielker2010-07-011-1/+1
| |
* | Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-291-2/+0
| | | | | | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
* | Updates all IRegionModules to the new style region modules.Revolution2010-01-231-0/+2
|/ | | | Signed-off-by: Melanie <melanie@t-data.com>
* Calling .Close() on AutoResetEvent and ManualResetEvent (those classes ↵John Hurliman2009-10-091-2/+2
| | | | contain an unmanaged resource that will not automatically be disposed when they are GCed), and commenting out some ManualResetEvents that are not in use yet
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2009-09-251-4/+3
|
* Moved RegionName from RegionInfo to SimpleRegionInfo.Diva Canto2009-09-221-242/+242
|
* Thank you, Intari, for a patch that implements the missing pieces ofMelanie2009-09-221-37/+269
| | | | | | | | Http-in and makes the host name for URL generation configurable. Applied with changes: llGetSimulatorHostname was not changed, because the change breaks existing behavior and carries a data exposure risk. That value needs to be configurable, the proposed fixed change is not acceptable.
* Replace the Replaceable modules nameMelanie2009-08-101-1/+1
|
* * Remove some mono compiler warningsJustin Clark-Casey2009-08-051-3/+3
|
* Formatting cleanup.Jeff Ames2009-07-231-6/+6
|
* Thank you, patnad, for a patch to advance the UrlModule's functionality.Melanie Thielker2009-07-221-6/+9
| | | | | | Mantis #3712
* Committing the interface change and the addition to the modules to getMelanie Thielker2009-07-101-0/+5
| | | | | | the ball rolling on replacable modules. No user functionality yet
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-1/+1
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Revert a change I made to get a better URL because it failes under monoMelanie Thielker2009-05-261-1/+1
|
* Couple of tweaks to the URL module: handle script reset gracefully andMelanie Thielker2009-05-261-1/+10
| | | | | | stop crashing http server threads.
* Add copyright headers, formatting cleanup.Jeff Ames2009-05-201-4/+4
|
* Fix up some URL detailsMelanie Thielker2009-05-131-6/+3
|
* Add the port to the generated URL. For some reson this still doesn't want toMelanie Thielker2009-05-131-1/+1
| | | | | | receive requests.
* Make the LSL HTTP server create and give out URLs to scriptsMelanie Thielker2009-05-131-1/+14
|
* Add most of the meat to the LSL HTTP serverMelanie Thielker2009-05-131-11/+123
|
* Plumb request and return URL functions.Melanie Thielker2009-05-131-2/+9
| | | | | | Implements llRequestURL, llRequestSecureURL, llReleaseURL
* Add a skeleton for the LSLHttpServerMelanie Thielker2009-05-131-0/+116