forked from I2P_Developers/i2p.i2p

* Port the java SAM client library to mono/C# and released into the public domain. The 0.1 version of this port is available in CVS as i2p/apps/sam/csharp/src/I2P.SAM.Client. The other nonfunctional C# library has been removed.
27 lines
1.2 KiB
C#
27 lines
1.2 KiB
C#
namespace I2P.SAM.Client
|
|
{
|
|
public struct SamBridgeMessages
|
|
{
|
|
public const string NAMING_REPLY_INVALID_KEY = "INVALID_KEY";
|
|
public const string NAMING_REPLY_KEY_NOT_FOUND = "KEY_NOT_FOUND";
|
|
public const string NAMING_REPLY_OK = "OK";
|
|
|
|
public const string SESSION_STATUS_DUPLICATE_DEST = "DUPLICATE_DEST";
|
|
public const string SESSION_STATUS_I2P_ERROR = "I2P_ERROR";
|
|
public const string SESSION_STATUS_INVALID_KEY = "INVALID_KEY";
|
|
public const string SESSION_STATUS_OK = "OK";
|
|
|
|
public const string STREAM_CLOSED_CANT_REACH_PEER = "CANT_REACH_PEER";
|
|
public const string STREAM_CLOSED_I2P_ERROR = "I2P_ERROR";
|
|
public const string STREAM_CLOSED_PEER_NOT_FOUND = "PEER_NOT_FOUND";
|
|
public const string STREAM_CLOSED_TIMEOUT = "CLOSED";
|
|
public const string STREAM_CLOSED_OK = "OK";
|
|
|
|
public const string STREAM_STATUS_CANT_REACH_PEER = "CANT_REACH_PEER";
|
|
public const string STREAM_STATUS_I2P_ERROR = "I2P_ERROR";
|
|
public const string STREAM_STATUS_INVALID_KEY = "INVALID_KEY";
|
|
public const string STREAM_STATUS_TIMEOUT = "TIMEOUT";
|
|
public const string STREAM_STATUS_OK = "OK";
|
|
}
|
|
}
|