aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/XMLRPCModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Removed more compiler warnings, dead code, etc.Adam Frisby2008-03-051-1/+0
|
* "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-116/+366
| | | | | | | | This patch implements the llSendRemoteData command and fixes mantis 552, and possibly 586.
* Patch from Michael Osias IBM (jimbo2120)Justin Clarke Casey2008-02-181-0/+19
| | | | | | | | In his own words: If a prim becomes a listener or remote channel and the script is deleted, it cannot become a listener or channel again with a new script. This patch fixes that.
* Converted logging to use log4net.Jeff Ames2008-02-051-9/+5
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Mother of all commits:Adam Frisby2008-01-151-1/+1
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* * Optimized usingslbsa712007-12-271-4/+5
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* * Removed redundant code in RestService.csAdam Frisby2007-12-181-3/+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-131-11/+38
| | | | | | | | | | | | | This patch makes some enhancements to the llRemoteData functions. The module is now a shared module, and allows remote data channels to be created among multiple regions in the same sim. The port is controlled from the remoteDataPort property under the [Network] section in OpenSim.ini. If this setting is not present or = 0, the module is disabled and no port is opened. llRemoteData commands have not effect when module is disabled.
* From Michael Osias (IBM)Sean Dague2007-12-121-1/+1
| | | | | | | | | | | | 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
* cleaned up some mono compiler warningsJeff Ames2007-11-181-1/+1
|
* * Optimized usingslbsa712007-10-301-32/+33
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-291-1/+1
| | | | | | | Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
* changes to pass nini config object to the modules that getSean Dague2007-10-191-1/+2
| | | | | | loaded so that they may read out any bits they are interested in
* * Applied Chillken patch #418: copyright-r2094.patch updating copyright ↵lbsa712007-10-151-0/+28
| | | | messages. Thanks Chillken!
* * Gave ModuleLoader some good lovin'lbsa712007-10-101-5/+5
| | | | | | | * Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
* Code from Illumious Beltran (IBM) implementing more LSLSean Dague2007-10-051-0/+360
The functions implemented are: llListen llListenControl llListenRemove llOpenRemoteDataChannel llCloseRemoteDataChannel llRemoteDataReply The events implemented are: listen remote_data