aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Util.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-10-06* Try/catch around EndInvoke() when Util.FireAndForget() returns to catch ↵John Hurliman1-1/+3
exceptions thrown in the async method * Added packet stats handling to the new LLUDP implementation * Attempting to avoid a race condition when creating a new LLUDPClient
2009-10-06* Continued work on the new LLUDP implementation. Appears to be functioning, ↵John Hurliman1-0/+36
although not everything is reimplemented yet * Replaced logic in ThreadTracker with a call to System.Diagnostics that does the same thing * Added Util.StringToBytes256() and Util.StringToBytes1024() to clamp output at byte[256] and byte[1024], respectively * Fixed formatting for a MySQLAssetData error logging line
2009-10-02* Creates Util.UTF8 and switches some references of Encoding.UTF8 to ↵John Hurliman1-5/+7
Util.UTF8 (not all references were switched since not all OpenSim libraries reference OpenSim.Framework) * Shrinks the largest in-memory object, the LLRAW.HeightmapLookupValue struct (only used for exporting to LLRAW terrain files), to the minimum possible size. This seems to have the odd side effect of cutting the size of the two double[256,256] terrain objects in half. Possibly an alignment optimization?
2009-10-01Formatting cleanup.Jeff Ames1-3/+3
2009-09-26Moved all HG1 operations to HGGridConnector.cs and ↵Diva Canto1-0/+26
HypergridServerConnector.cs/HypergridServiceConnector.cs, away from Region.Communications and HGNetworkServersInfo. Fixed small bugs with hyperlinked regions' map positions.
2009-09-24* Minor commit, added two new math utility functions.Adam Frisby1-0/+33
2009-09-03Added Util.FireAndForget(), to replace leaking calls to Delegate.BeginInvoke()John Hurliman1-0/+22
2009-08-07Remove debugging output frm ini file loading. Make it collect matchingMelanie1-10/+8
files only from last path component.
2009-08-07Add extensive debug output to Util.GlobMelanie1-0/+9
2009-08-07Remove GetFullPath call from config includes, because it barfs in WindozeMelanie1-3/+0
2009-08-07Add a method to init the OSSL Api's m_LSL_Api member back to the OSSL ApiMelanie1-0/+3
2009-08-06Allow arbitrary wildcards in config includes. Things likeMelanie1-0/+51
Include-Modules = "addin-modules/*/config/*.ini" will now work. Adds Util.Glob, which will resolve a globbed path into a string list.
2009-06-10Formatting cleanup.Jeff Ames1-2/+2
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-31Add copyright headers, formatting cleanup, ignore some generated files.Jeff Ames1-1/+1
2009-05-25One more utility. Not used yet.diva1-2/+22
2009-05-23* Fixes [irritating] edge case in Util.GetLocalHost which could return an ↵Adam Frisby1-0/+8
IPv6 address if no non-loopback IPv4 address can be found. * Restores internal IPv6 support to NetworkUtil.* * Fixes bad login unit tests.
2009-05-23* Adds new NetworkUtil class, contains methods for handling IP resolution ↵Adam Frisby1-0/+14
when located on the same subnet. (Eg, can be used to avoid NAT Loopback requirements if fully utilized.) * Adds a few new network-related methods to Util.
2009-05-12Thank you kindly, Patnad, for a patch that:Charles Krinke1-0/+24
This is to handle the changes in the v1.23 viewer of LL regarding the adult rating. With this patch a region can be changed to the adult rating from LL viewer v1.23 and above.
2009-04-28* Add preliminary code for resolving iar profile namesJustin Clarke Casey1-1/+0
* Not yet active
2009-04-14Adds session authentication upon NewUserConnections. Adds user key ↵diva1-0/+16
authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
2009-04-04Remove some Mono warnings.Homer Horwitz1-1/+1
2009-04-01* Added NUnit tested utility function GetHashGuid() for future use.lbsa711-7/+30
* Did some aligning refactoring of the MD5 and SHA-1 functions.
2009-03-31* Refactored out and de-duplicated Base64ToString(string)lbsa711-7/+20
* Fixed minor typo
2009-03-03Refactoring of CreateCommsManagerPlugin.MW1-2/+1
Plus some general cleanup of a few other files (deleting excess blank lines etc)
2009-02-28Added check so Util.ReadSettingsFromIniFile doesn't try to set static fields.MW1-18/+21
2009-02-28Copied the Util.ReadSettingsFromIniFile method from the branch to trunk.MW1-0/+61
2009-02-23* Performance Changes:Adam Frisby1-0/+15
* Moves Entity Updates into a seperate thread, allowing for OpenSim to utilize a computers CPU more effectively in return for potentially greater user and prim capacity. * Removes an expensive Sqrt call performed during Update on each object. This should lower CPU requirements for high-prim regions with physics enabled. * MXP Changes: Centers the region around 0,0 for primitives instead of 128,128. Prim display should now look more correct for MXP viewers.
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-4/+2
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-17* Moved the nifty MySQLEstateData connectionstring password-stripper out ↵lbsa711-0/+20
into the Util project
2009-02-12* optimized usings.lbsa711-5/+5
2009-01-29Complete the implementation of llSHA1String.idb1-0/+11
2009-01-13Change fake parcel ids to allow a Z coordinate. Change TP by lureMelanie Thielker1-4/+24
to also transmit and use a Z coordinate.
2009-01-06* minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey1-8/+0
2009-01-05* Centralize references to the well known blank texture ↵Justin Clarke Casey1-1/+6
5748decc-f629-461c-9a36-a35a221fe21f to a constant in OpenSim.Framework.Util
2008-12-14Mantis#2725. Thank you kindly, Diva, for a patch that:Charles Krinke1-1/+1
Adds missing protocol pieces for EstablishAgentCommunication event which allows the client to activate CAPS and the EQ for child agents.
2008-12-09* Added primitive exception logging capabilities.Adam Frisby1-0/+28
* Disabled by default (see OpenSim.ini.example for how to enable) * Saves exceptions to a folder on disk (default "crashes") when enabled. * These reports can then be uploaded or posted to help debug an error.
2008-11-30Mantis #2584 (again)Melanie Thielker1-0/+6
Next step of diva's TP fixes and HG support
2008-11-19Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker1-5/+5
libOMV.
2008-11-19Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker1-5/+5
release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
2008-11-17* Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey1-5/+5
* Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly
2008-11-11* Implement basic region filtering as described in ↵Justin Clarke Casey1-0/+27
https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html * This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
2008-11-08* Added IClientIM to IClientCore interfacesAdam Frisby1-1/+1
* Changed SendInstantMessage, dropped fromAgentSession and imSessionID as security precaution, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide for details on porting. * Removed unused usings from Framework.*
2008-11-03* Use the UUID regex sitting in utils for detection of uuids embedded in scriptsJustin Clarke Casey1-1/+7
* Replaces the one in the module itself, which had a dumb bug in it anyway
2008-11-02- Add Util.isUUIDHomer Horwitz1-0/+7
- Add tests for Util.isUUID - First part of the fix for protocol interoperability between viewer 1.20 and 1.21 for friend offers.
2008-10-18- Fix Util.UnixTimeSinceEpoch:Homer Horwitz1-3/+8
* Unix epoch starts at midnight, not at 8:00am * All date/time handling should be done in UTC in the server, not in the local timezone. * Refactor out repeated computation of a constant value - Added setting of CreationTime to some places where inventoryitems are created This fixes Mantis#2390.
2008-10-15* Truncate outgoing media and music urls to 254 characters.Justin Clarke Casey1-40/+0
* Hopefully this will resolve http://opensimulator.org/mantis/view.php?id=2383
2008-10-15Thanks to M. Igarashi and nlin for a patch that implements llGetCameraRot().Dahlia Trimble1-0/+54
2008-10-12- Added helper method to compute global coordinates from a fake parcelIDHomer Horwitz1-4/+20
- Some formatting cleanups
2008-09-15* minor: eat up some yummy warningsJustin Clarke Casey1-4/+5