This commit is contained in:
2024-02-23 06:57:07 -05:00
commit 8fb7082f56
104 changed files with 284139 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace Tor
{
/// <summary>
/// An enumerator containing the different reasons for a <c>ORStatus.Closed</c> or <c>ORStatus.Failed</c> state.
/// </summary>
public enum ORReason
{
/// <summary>
/// The reason was not provided or could not be determined.
/// </summary>
[Description(null)]
None,
/// <summary>
/// The OR connection has shut down cleanly.
/// </summary>
[Description("DONE")]
Done,
/// <summary>
/// The OR connection received an <c>ECONNREFUSED</c> when connecting to the target OR.
/// </summary>
[Description("CONNECTREFUSED")]
ConnectRefused,
/// <summary>
/// The OR connection connected to the OR, but the identity was not what was expected.
/// </summary>
[Description("IDENTITY")]
Identity,
/// <summary>
/// The OR connection received an <c>ECONNRESET</c> or similar IO error from OR.
/// </summary>
[Description("CONNECTRESET")]
ConnectReset,
/// <summary>
/// The OR connection received an <c>ETIMEOUT</c> or similar IO eerror from the OR, or the connection
/// has been terminated for being open for too long.
/// </summary>
[Description("TIMEOUT")]
Timeout,
/// <summary>
/// The OR connection received an <c>ENOTCONN</c>, <c>ENETUNREACH</c>, <c>ENETDOWN</c>, <c>EHOSTUNREACH</c> or
/// similar error while connecting to the OR.
/// </summary>
[Description("NOROUTE")]
NoRoute,
/// <summary>
/// The OR connection received a different IO error.
/// </summary>
[Description("IOERROR")]
IOError,
/// <summary>
/// The OR connection does not have enough system resources to connect to the OR.
/// </summary>
[Description("RESOURCELIMIT")]
ResourceLimit,
/// <summary>
/// No pluggable transport was available.
/// </summary>
[Description("PT_MISSING")]
PTMissing,
/// <summary>
/// The OR connection closed for some other reason.
/// </summary>
[Description("MISC")]
Misc
}
}

View File

@@ -0,0 +1,50 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace Tor
{
/// <summary>
/// An enumerator containing the different states of an OR connection.
/// </summary>
public enum ORStatus
{
/// <summary>
/// No status was not provided or the status could not be determined.
/// </summary>
[Description(null)]
None,
/// <summary>
/// The OR connection has been received and is beginning the handshake process.
/// </summary>
[Description("NEW")]
New,
/// <summary>
/// The OR connection has been launched and is beginning the client-side handshake process.
/// </summary>
[Description("LAUNCHED")]
Launched,
/// <summary>
/// The OR connection has been connected and the handshake is complete.
/// </summary>
[Description("CONNECTED")]
Connected,
/// <summary>
/// The OR connection failed.
/// </summary>
[Description("FAILED")]
Failed,
/// <summary>
/// The OR connection closed.
/// </summary>
[Description("CLOSED")]
Closed
}
}