This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP
{
// Token: 0x02001989 RID: 6537
[Token(Token = "0x2001989")]
internal enum SOCKSMethods : byte
{
// Token: 0x040066F3 RID: 26355
[Token(Token = "0x40066F3")]
NoAuthenticationRequired,
// Token: 0x040066F4 RID: 26356
[Token(Token = "0x40066F4")]
GSSAPI,
// Token: 0x040066F5 RID: 26357
[Token(Token = "0x40066F5")]
UsernameAndPassword,
// Token: 0x040066F6 RID: 26358
[Token(Token = "0x40066F6")]
NoAcceptableMethods = 255
}
}