* Added more documentation to Types.cs

* Renamed LLUUID.GenerateUUID() to LLUUID.Random()
* Optimized the type classes hashing functions
* Fixed a bug where source packet data would be modified on big endian platforms when creating type classes
* Normalized the ToString() output of the type classes

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@677 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2006-12-04 00:19:58 +00:00
parent 2a5d1750f4
commit 3dbdbec13b
13 changed files with 250 additions and 167 deletions

View File

@@ -2,14 +2,14 @@ namespace Nwc.XmlRpc
{
using System;
/// <summary>Standard XML-RPC error codes.</summary>
/// <summary>Standard XML-RPC error codes</summary>
public class XmlRpcErrorCodes
{
// -32400 ---> system error
/// <summary></summary>
/// <summary>Transport error</summary>
public const int TRANSPORT_ERROR = -32300;
/// <summary></summary>
/// <summary>Transport error message</summary>
public const String TRANSPORT_ERROR_MSG = "Transport Layer Error";
}
}