config.pb.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package websocket
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. // Reference imports to suppress errors if they are not otherwise used.
  6. var _ = proto.Marshal
  7. var _ = fmt.Errorf
  8. var _ = math.Inf
  9. // This is a compile-time assertion to ensure that this generated file
  10. // is compatible with the proto package it is being compiled against.
  11. // A compilation error at this line likely means your copy of the
  12. // proto package needs to be updated.
  13. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  14. type Header struct {
  15. Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
  16. Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
  17. }
  18. func (m *Header) Reset() { *m = Header{} }
  19. func (m *Header) String() string { return proto.CompactTextString(m) }
  20. func (*Header) ProtoMessage() {}
  21. func (*Header) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  22. func (m *Header) GetKey() string {
  23. if m != nil {
  24. return m.Key
  25. }
  26. return ""
  27. }
  28. func (m *Header) GetValue() string {
  29. if m != nil {
  30. return m.Value
  31. }
  32. return ""
  33. }
  34. type Config struct {
  35. // URL path to the WebSocket service. Empty value means root(/).
  36. Path string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
  37. Header []*Header `protobuf:"bytes,3,rep,name=header" json:"header,omitempty"`
  38. }
  39. func (m *Config) Reset() { *m = Config{} }
  40. func (m *Config) String() string { return proto.CompactTextString(m) }
  41. func (*Config) ProtoMessage() {}
  42. func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  43. func (m *Config) GetPath() string {
  44. if m != nil {
  45. return m.Path
  46. }
  47. return ""
  48. }
  49. func (m *Config) GetHeader() []*Header {
  50. if m != nil {
  51. return m.Header
  52. }
  53. return nil
  54. }
  55. func init() {
  56. proto.RegisterType((*Header)(nil), "v2ray.core.transport.internet.websocket.Header")
  57. proto.RegisterType((*Config)(nil), "v2ray.core.transport.internet.websocket.Config")
  58. }
  59. func init() {
  60. proto.RegisterFile("v2ray.com/core/transport/internet/websocket/config.proto", fileDescriptor0)
  61. }
  62. var fileDescriptor0 = []byte{
  63. // 229 bytes of a gzipped FileDescriptorProto
  64. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xb2, 0x28, 0x33, 0x2a, 0x4a,
  65. 0xac, 0xd4, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x29, 0x4a, 0xcc, 0x2b,
  66. 0x2e, 0xc8, 0x2f, 0x2a, 0xd1, 0xcf, 0xcc, 0x2b, 0x49, 0x2d, 0xca, 0x4b, 0x2d, 0xd1, 0x2f, 0x4f,
  67. 0x4d, 0x2a, 0xce, 0x4f, 0xce, 0x4e, 0x2d, 0xd1, 0x4f, 0xce, 0xcf, 0x4b, 0xcb, 0x4c, 0xd7, 0x2b,
  68. 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x52, 0x87, 0xe9, 0x2c, 0x4a, 0xd5, 0x83, 0xeb, 0xd2, 0x83, 0xe9,
  69. 0xd2, 0x83, 0xeb, 0x52, 0x32, 0xe0, 0x62, 0xf3, 0x48, 0x4d, 0x4c, 0x49, 0x2d, 0x12, 0x12, 0xe0,
  70. 0x62, 0xce, 0x4e, 0xad, 0x94, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x02, 0x31, 0x85, 0x44, 0xb8,
  71. 0x58, 0xcb, 0x12, 0x73, 0x4a, 0x53, 0x25, 0x98, 0xc0, 0x62, 0x10, 0x8e, 0x52, 0x36, 0x17, 0x9b,
  72. 0x33, 0xd8, 0x2a, 0x21, 0x21, 0x2e, 0x96, 0x82, 0xc4, 0x92, 0x0c, 0xa8, 0x34, 0x98, 0x2d, 0xe4,
  73. 0xce, 0xc5, 0x96, 0x01, 0x36, 0x4f, 0x82, 0x59, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x5f, 0x8f, 0x48,
  74. 0x97, 0xe8, 0x41, 0x9c, 0x11, 0x04, 0xd5, 0xee, 0xc5, 0xc2, 0xc1, 0x28, 0xc0, 0xe4, 0x94, 0xc2,
  75. 0xa5, 0x9d, 0x9c, 0x9f, 0x4b, 0xac, 0x19, 0x01, 0x8c, 0x51, 0x9c, 0x70, 0xce, 0x2a, 0x26, 0xf5,
  76. 0x30, 0xa3, 0xa0, 0xc4, 0x4a, 0x3d, 0x67, 0x90, 0xb6, 0x10, 0xb8, 0x36, 0x4f, 0x98, 0xb6, 0x70,
  77. 0x98, 0xca, 0x24, 0x36, 0x70, 0xa0, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf5, 0x7e, 0x60,
  78. 0xf9, 0x70, 0x01, 0x00, 0x00,
  79. }