config.pb.go 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. package shadowsocks
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. import v2ray_core_common_net "v2ray.com/core/common/net"
  6. import v2ray_core_common_protocol "v2ray.com/core/common/protocol"
  7. import v2ray_core_common_protocol1 "v2ray.com/core/common/protocol"
  8. // Reference imports to suppress errors if they are not otherwise used.
  9. var _ = proto.Marshal
  10. var _ = fmt.Errorf
  11. var _ = math.Inf
  12. // This is a compile-time assertion to ensure that this generated file
  13. // is compatible with the proto package it is being compiled against.
  14. // A compilation error at this line likely means your copy of the
  15. // proto package needs to be updated.
  16. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  17. type CipherType int32
  18. const (
  19. CipherType_UNKNOWN CipherType = 0
  20. CipherType_AES_128_CFB CipherType = 1
  21. CipherType_AES_256_CFB CipherType = 2
  22. CipherType_CHACHA20 CipherType = 3
  23. CipherType_CHACHA20_IETF CipherType = 4
  24. CipherType_AES_128_GCM CipherType = 5
  25. CipherType_AES_256_GCM CipherType = 6
  26. CipherType_CHACHA20_POLY1305 CipherType = 7
  27. CipherType_NONE CipherType = 8
  28. )
  29. var CipherType_name = map[int32]string{
  30. 0: "UNKNOWN",
  31. 1: "AES_128_CFB",
  32. 2: "AES_256_CFB",
  33. 3: "CHACHA20",
  34. 4: "CHACHA20_IETF",
  35. 5: "AES_128_GCM",
  36. 6: "AES_256_GCM",
  37. 7: "CHACHA20_POLY1305",
  38. 8: "NONE",
  39. }
  40. var CipherType_value = map[string]int32{
  41. "UNKNOWN": 0,
  42. "AES_128_CFB": 1,
  43. "AES_256_CFB": 2,
  44. "CHACHA20": 3,
  45. "CHACHA20_IETF": 4,
  46. "AES_128_GCM": 5,
  47. "AES_256_GCM": 6,
  48. "CHACHA20_POLY1305": 7,
  49. "NONE": 8,
  50. }
  51. func (x CipherType) String() string {
  52. return proto.EnumName(CipherType_name, int32(x))
  53. }
  54. func (CipherType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  55. type Account_OneTimeAuth int32
  56. const (
  57. Account_Auto Account_OneTimeAuth = 0
  58. Account_Disabled Account_OneTimeAuth = 1
  59. Account_Enabled Account_OneTimeAuth = 2
  60. )
  61. var Account_OneTimeAuth_name = map[int32]string{
  62. 0: "Auto",
  63. 1: "Disabled",
  64. 2: "Enabled",
  65. }
  66. var Account_OneTimeAuth_value = map[string]int32{
  67. "Auto": 0,
  68. "Disabled": 1,
  69. "Enabled": 2,
  70. }
  71. func (x Account_OneTimeAuth) String() string {
  72. return proto.EnumName(Account_OneTimeAuth_name, int32(x))
  73. }
  74. func (Account_OneTimeAuth) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
  75. type Account struct {
  76. Password string `protobuf:"bytes,1,opt,name=password" json:"password,omitempty"`
  77. CipherType CipherType `protobuf:"varint,2,opt,name=cipher_type,json=cipherType,enum=v2ray.core.proxy.shadowsocks.CipherType" json:"cipher_type,omitempty"`
  78. Ota Account_OneTimeAuth `protobuf:"varint,3,opt,name=ota,enum=v2ray.core.proxy.shadowsocks.Account_OneTimeAuth" json:"ota,omitempty"`
  79. }
  80. func (m *Account) Reset() { *m = Account{} }
  81. func (m *Account) String() string { return proto.CompactTextString(m) }
  82. func (*Account) ProtoMessage() {}
  83. func (*Account) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  84. func (m *Account) GetPassword() string {
  85. if m != nil {
  86. return m.Password
  87. }
  88. return ""
  89. }
  90. func (m *Account) GetCipherType() CipherType {
  91. if m != nil {
  92. return m.CipherType
  93. }
  94. return CipherType_UNKNOWN
  95. }
  96. func (m *Account) GetOta() Account_OneTimeAuth {
  97. if m != nil {
  98. return m.Ota
  99. }
  100. return Account_Auto
  101. }
  102. type ServerConfig struct {
  103. // UdpEnabled specified whether or not to enable UDP for Shadowsocks.
  104. // Deprecated. Use 'network' field.
  105. UdpEnabled bool `protobuf:"varint,1,opt,name=udp_enabled,json=udpEnabled" json:"udp_enabled,omitempty"`
  106. User *v2ray_core_common_protocol.User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
  107. Network []v2ray_core_common_net.Network `protobuf:"varint,3,rep,packed,name=network,enum=v2ray.core.common.net.Network" json:"network,omitempty"`
  108. }
  109. func (m *ServerConfig) Reset() { *m = ServerConfig{} }
  110. func (m *ServerConfig) String() string { return proto.CompactTextString(m) }
  111. func (*ServerConfig) ProtoMessage() {}
  112. func (*ServerConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  113. func (m *ServerConfig) GetUdpEnabled() bool {
  114. if m != nil {
  115. return m.UdpEnabled
  116. }
  117. return false
  118. }
  119. func (m *ServerConfig) GetUser() *v2ray_core_common_protocol.User {
  120. if m != nil {
  121. return m.User
  122. }
  123. return nil
  124. }
  125. func (m *ServerConfig) GetNetwork() []v2ray_core_common_net.Network {
  126. if m != nil {
  127. return m.Network
  128. }
  129. return nil
  130. }
  131. type ClientConfig struct {
  132. Server []*v2ray_core_common_protocol1.ServerEndpoint `protobuf:"bytes,1,rep,name=server" json:"server,omitempty"`
  133. }
  134. func (m *ClientConfig) Reset() { *m = ClientConfig{} }
  135. func (m *ClientConfig) String() string { return proto.CompactTextString(m) }
  136. func (*ClientConfig) ProtoMessage() {}
  137. func (*ClientConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  138. func (m *ClientConfig) GetServer() []*v2ray_core_common_protocol1.ServerEndpoint {
  139. if m != nil {
  140. return m.Server
  141. }
  142. return nil
  143. }
  144. func init() {
  145. proto.RegisterType((*Account)(nil), "v2ray.core.proxy.shadowsocks.Account")
  146. proto.RegisterType((*ServerConfig)(nil), "v2ray.core.proxy.shadowsocks.ServerConfig")
  147. proto.RegisterType((*ClientConfig)(nil), "v2ray.core.proxy.shadowsocks.ClientConfig")
  148. proto.RegisterEnum("v2ray.core.proxy.shadowsocks.CipherType", CipherType_name, CipherType_value)
  149. proto.RegisterEnum("v2ray.core.proxy.shadowsocks.Account_OneTimeAuth", Account_OneTimeAuth_name, Account_OneTimeAuth_value)
  150. }
  151. func init() { proto.RegisterFile("v2ray.com/core/proxy/shadowsocks/config.proto", fileDescriptor0) }
  152. var fileDescriptor0 = []byte{
  153. // 522 bytes of a gzipped FileDescriptorProto
  154. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xc1, 0x6e, 0xd3, 0x4e,
  155. 0x10, 0xc6, 0xbb, 0x71, 0xff, 0x4d, 0xfe, 0xe3, 0x50, 0xdc, 0x95, 0x90, 0xac, 0xa8, 0x42, 0x56,
  156. 0x38, 0x10, 0x2a, 0xb1, 0x4e, 0x5c, 0x8a, 0x7a, 0x75, 0x4c, 0x4a, 0x2b, 0xc0, 0x89, 0x9c, 0x14,
  157. 0x04, 0x17, 0xcb, 0x5d, 0x2f, 0xc4, 0x6a, 0xe2, 0xb5, 0xd6, 0x76, 0x43, 0x9e, 0x86, 0x03, 0x37,
  158. 0xde, 0x8c, 0xb7, 0x40, 0x5e, 0x3b, 0xa9, 0x85, 0xaa, 0x70, 0x88, 0x94, 0x99, 0xfd, 0x7d, 0x9f,
  159. 0x66, 0xbe, 0x31, 0xbc, 0xbc, 0xb3, 0x44, 0xb0, 0x26, 0x94, 0x2f, 0x4d, 0xca, 0x05, 0x33, 0x13,
  160. 0xc1, 0xbf, 0xaf, 0xcd, 0x74, 0x1e, 0x84, 0x7c, 0x95, 0x72, 0x7a, 0x9b, 0x9a, 0x94, 0xc7, 0x5f,
  161. 0xa3, 0x6f, 0x24, 0x11, 0x3c, 0xe3, 0xf8, 0x78, 0x83, 0x0b, 0x46, 0x24, 0x4a, 0x6a, 0x68, 0xe7,
  162. 0xf9, 0x5f, 0x66, 0x94, 0x2f, 0x97, 0x3c, 0x36, 0x63, 0x96, 0x15, 0xbf, 0x15, 0x17, 0xb7, 0xa5,
  163. 0x4d, 0xe7, 0xc5, 0xc3, 0xa0, 0x7c, 0xa4, 0x7c, 0x61, 0xe6, 0x29, 0x13, 0x15, 0xda, 0xff, 0x07,
  164. 0x9a, 0x32, 0x71, 0xc7, 0x84, 0x9f, 0x26, 0x8c, 0x96, 0x8a, 0xee, 0x6f, 0x04, 0x4d, 0x9b, 0x52,
  165. 0x9e, 0xc7, 0x19, 0xee, 0x40, 0x2b, 0x09, 0xd2, 0x74, 0xc5, 0x45, 0xa8, 0x23, 0x03, 0xf5, 0xfe,
  166. 0xf7, 0xb6, 0x35, 0xbe, 0x02, 0x95, 0x46, 0xc9, 0x9c, 0x09, 0x3f, 0x5b, 0x27, 0x4c, 0x6f, 0x18,
  167. 0xa8, 0x77, 0x68, 0xf5, 0xc8, 0xae, 0x0d, 0x89, 0x23, 0x05, 0xb3, 0x75, 0xc2, 0x3c, 0xa0, 0xdb,
  168. 0xff, 0xd8, 0x01, 0x85, 0x67, 0x81, 0xae, 0x48, 0x8b, 0xc1, 0x6e, 0x8b, 0x6a, 0x34, 0x32, 0x8e,
  169. 0xd9, 0x2c, 0x5a, 0x32, 0x3b, 0xcf, 0xe6, 0x5e, 0xa1, 0xee, 0x5a, 0xa0, 0xd6, 0x7a, 0xb8, 0x05,
  170. 0xfb, 0x76, 0x9e, 0x71, 0x6d, 0x0f, 0xb7, 0xa1, 0xf5, 0x26, 0x4a, 0x83, 0x9b, 0x05, 0x0b, 0x35,
  171. 0x84, 0x55, 0x68, 0x8e, 0xe2, 0xb2, 0x68, 0x74, 0x7f, 0x22, 0x68, 0x4f, 0x65, 0x02, 0x8e, 0x3c,
  172. 0x13, 0x7e, 0x06, 0x6a, 0x1e, 0x26, 0x3e, 0x2b, 0x09, 0xb9, 0x73, 0x6b, 0xd8, 0xd0, 0x91, 0x07,
  173. 0x79, 0x98, 0x54, 0x3a, 0xfc, 0x0a, 0xf6, 0x8b, 0x84, 0xe5, 0xca, 0xaa, 0x65, 0xd4, 0xe7, 0x2d,
  174. 0xe3, 0x25, 0x9b, 0x78, 0xc9, 0x75, 0xca, 0x84, 0x27, 0x69, 0x7c, 0x0e, 0xcd, 0xea, 0x8a, 0xba,
  175. 0x62, 0x28, 0xbd, 0x43, 0xeb, 0xe9, 0x03, 0xc2, 0x98, 0x65, 0xc4, 0x2d, 0x29, 0x6f, 0x83, 0x77,
  176. 0x3d, 0x68, 0x3b, 0x8b, 0x88, 0xc5, 0x59, 0x35, 0xe4, 0x10, 0x0e, 0xca, 0xb3, 0xe9, 0xc8, 0x50,
  177. 0x7a, 0xaa, 0x75, 0xb2, 0x6b, 0x82, 0x72, 0xbd, 0x51, 0x1c, 0x26, 0x3c, 0x8a, 0x33, 0xaf, 0x52,
  178. 0x9e, 0xfc, 0x40, 0x00, 0xf7, 0xd7, 0x28, 0x52, 0xb9, 0x76, 0xdf, 0xb9, 0xe3, 0x4f, 0xae, 0xb6,
  179. 0x87, 0x1f, 0x83, 0x6a, 0x8f, 0xa6, 0xfe, 0xc0, 0x3a, 0xf7, 0x9d, 0x8b, 0xa1, 0x86, 0x36, 0x0d,
  180. 0xeb, 0xec, 0xb5, 0x6c, 0x34, 0x8a, 0x48, 0x9d, 0x4b, 0xdb, 0xb9, 0xb4, 0xad, 0xbe, 0xa6, 0xe0,
  181. 0x23, 0x78, 0xb4, 0xa9, 0xfc, 0xab, 0xd1, 0xec, 0x42, 0xdb, 0xaf, 0x5b, 0xbc, 0x75, 0x3e, 0x68,
  182. 0xff, 0xd5, 0x2d, 0x8a, 0xc6, 0x01, 0x7e, 0x02, 0x47, 0x5b, 0xd1, 0x64, 0xfc, 0xfe, 0xf3, 0xe0,
  183. 0xb4, 0x7f, 0xa6, 0x35, 0x8b, 0xb3, 0xb9, 0x63, 0x77, 0xa4, 0xb5, 0x86, 0x13, 0x30, 0x28, 0x5f,
  184. 0xee, 0xfc, 0x18, 0x26, 0xe8, 0x8b, 0x5a, 0x2b, 0x7f, 0x35, 0x8e, 0x3f, 0x5a, 0x5e, 0xb0, 0x26,
  185. 0x4e, 0x41, 0x4f, 0x24, 0x3d, 0xbd, 0x7f, 0xbe, 0x39, 0x90, 0xa1, 0x9c, 0xfe, 0x09, 0x00, 0x00,
  186. 0xff, 0xff, 0xdc, 0x7e, 0x6b, 0x61, 0xb5, 0x03, 0x00, 0x00,
  187. }