This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP
{
// Token: 0x020018A9 RID: 6313
[Token(Token = "0x20018A9")]
internal enum SOCKSMethods : byte
{
// Token: 0x0400653A RID: 25914
[Token(Token = "0x400653A")]
NoAuthenticationRequired,
// Token: 0x0400653B RID: 25915
[Token(Token = "0x400653B")]
GSSAPI,
// Token: 0x0400653C RID: 25916
[Token(Token = "0x400653C")]
UsernameAndPassword,
// Token: 0x0400653D RID: 25917
[Token(Token = "0x400653D")]
NoAcceptableMethods = 255
}
}