initial commit

This commit is contained in:
i2p
2026-08-27 11:21:58 -06:00
commit c21fb61050
336 changed files with 74161 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
namespace Server.Helper.Sock5;
public enum SocksError
{
Granted = 0,
Failure = 1,
NotAllowed = 2,
Unreachable = 3,
HostUnreachable = 4,
Refused = 5,
Expired = 6,
NotSupported = 7,
AddressNotSupported = 8,
LoginRequired = 144,
Fail = 255
}