aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/ScriptsHttpRequests.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* "threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen2008-02-211-0/+1
| | | | compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* From: Michael Osias <mosias@us.ibm.com>Sean Dague2008-02-191-7/+24
| | | | | | | | This patch implements the llSendRemoteData command and fixes mantis 552, and possibly 586.
* Thank you, Kinoc for adding: When accessing slower web sites or proxy servicesCharles Krinke2008-01-121-1/+1
| | | | | | | | 300 msecs can be too slow and cause a timeout to occur. This is reported when llHTTPRequest times out but may not be reported for other functions like osSetDynamicTextureURL. This sets the time out to 30 seconds. It appears that the value affects not just llHTTPRequest's.
* * Optimized usingslbsa712007-12-271-133/+127
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* * Removed redundant code in RestService.csAdam Frisby2007-12-181-1/+1
| | | | | | | | * Removed unchecked TryParse, replaced with Parse as we were not checking for success and could lead to weirdness if an exception is ignored. * Removed unused variable m_newAvatar * Removed several unused try{}catch(Exception e){}'s. * Added null assignment in simpleapp to prevent warning.
* From Michael Osias (IBM)Sean Dague2007-12-121-2/+317
| | | | | | | | | | | | This patch implements the llHttpRequest function via a region module, HttpScriptsRequest. There were bits and peices in LSLLong_cmd_handler, which I moved into the region module, and just check for completed requests and dispatch the http_response callback event instead. works for me as of r2674
* * Optimized usingslbsa712007-10-301-1/+1
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-1/+29
|
* * Modernized ScriptManager to new interface-based module calls.lbsa712007-09-191-6/+2
| | | | | * 'remove redundant this qualifier' ftw
* fixing me some line endingsSean Dague2007-09-171-10/+10
|
* Some work on Module loading/management.MW2007-09-041-0/+10
Some more modules templates classes (hoping that someone will pick some of these and work on implementing them). Early version of the "Dynamic Texture Module", although currently there are no render modules included (so not really functional without them). Added osSetDynamicTextureURL script function, for attaching a dynamic texture to a prim. Some work on the console command handling. Added "change-region <regionname>" and "exit-region" so that after the use of change-region, the commands entered will apply to that region only. Then use exit-region to return to the top level (so commands then function as they did before and either apply to all regions or to the first region) (Note: this hasn't been tested very much)