Files
libremetaverse/libsecondlife-cs/XmlRpcCS/XmlRpcErrorCodes.cs
John Hurliman 3dbdbec13b * 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
2006-12-04 00:19:58 +00:00

16 lines
385 B
C#

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