|
@@ -10,9 +10,12 @@ It is generated from these files:
|
|
|
|
|
|
|
|
It has these top-level messages:
|
|
It has these top-level messages:
|
|
|
Header
|
|
Header
|
|
|
- HeaderEnding
|
|
|
|
|
|
|
+ Version
|
|
|
|
|
+ Method
|
|
|
RequestConfig
|
|
RequestConfig
|
|
|
|
|
+ Status
|
|
|
ResponseConfig
|
|
ResponseConfig
|
|
|
|
|
+ Config
|
|
|
*/
|
|
*/
|
|
|
package http
|
|
package http
|
|
|
|
|
|
|
@@ -43,20 +46,31 @@ func (m *Header) String() string { return proto.CompactTextString(m)
|
|
|
func (*Header) ProtoMessage() {}
|
|
func (*Header) ProtoMessage() {}
|
|
|
func (*Header) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
func (*Header) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
|
|
|
-type HeaderEnding struct {
|
|
|
|
|
|
|
+// HTTP version. Default value "1.1".
|
|
|
|
|
+type Version struct {
|
|
|
Value string `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
|
|
Value string `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (m *HeaderEnding) Reset() { *m = HeaderEnding{} }
|
|
|
|
|
-func (m *HeaderEnding) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
-func (*HeaderEnding) ProtoMessage() {}
|
|
|
|
|
-func (*HeaderEnding) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
|
|
|
+func (m *Version) Reset() { *m = Version{} }
|
|
|
|
|
+func (m *Version) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*Version) ProtoMessage() {}
|
|
|
|
|
+func (*Version) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
|
+
|
|
|
|
|
+// HTTP method. Default value "GET".
|
|
|
|
|
+type Method struct {
|
|
|
|
|
+ Value string `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *Method) Reset() { *m = Method{} }
|
|
|
|
|
+func (m *Method) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*Method) ProtoMessage() {}
|
|
|
|
|
+func (*Method) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
|
|
|
|
type RequestConfig struct {
|
|
type RequestConfig struct {
|
|
|
// Full HTTP version like "1.1".
|
|
// Full HTTP version like "1.1".
|
|
|
- Version string `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`
|
|
|
|
|
|
|
+ Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`
|
|
|
// GET, POST, CONNECT etc
|
|
// GET, POST, CONNECT etc
|
|
|
- Method string `protobuf:"bytes,2,opt,name=method" json:"method,omitempty"`
|
|
|
|
|
|
|
+ Method *Method `protobuf:"bytes,2,opt,name=method" json:"method,omitempty"`
|
|
|
// URI like "/login.php"
|
|
// URI like "/login.php"
|
|
|
Uri []string `protobuf:"bytes,3,rep,name=uri" json:"uri,omitempty"`
|
|
Uri []string `protobuf:"bytes,3,rep,name=uri" json:"uri,omitempty"`
|
|
|
Header []*Header `protobuf:"bytes,4,rep,name=header" json:"header,omitempty"`
|
|
Header []*Header `protobuf:"bytes,4,rep,name=header" json:"header,omitempty"`
|
|
@@ -65,7 +79,21 @@ type RequestConfig struct {
|
|
|
func (m *RequestConfig) Reset() { *m = RequestConfig{} }
|
|
func (m *RequestConfig) Reset() { *m = RequestConfig{} }
|
|
|
func (m *RequestConfig) String() string { return proto.CompactTextString(m) }
|
|
func (m *RequestConfig) String() string { return proto.CompactTextString(m) }
|
|
|
func (*RequestConfig) ProtoMessage() {}
|
|
func (*RequestConfig) ProtoMessage() {}
|
|
|
-func (*RequestConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
|
|
|
+func (*RequestConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
|
+
|
|
|
|
|
+func (m *RequestConfig) GetVersion() *Version {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Version
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *RequestConfig) GetMethod() *Method {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Method
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
|
|
|
func (m *RequestConfig) GetHeader() []*Header {
|
|
func (m *RequestConfig) GetHeader() []*Header {
|
|
|
if m != nil {
|
|
if m != nil {
|
|
@@ -74,17 +102,42 @@ func (m *RequestConfig) GetHeader() []*Header {
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+type Status struct {
|
|
|
|
|
+ // Status code. Default "200".
|
|
|
|
|
+ Code string `protobuf:"bytes,1,opt,name=code" json:"code,omitempty"`
|
|
|
|
|
+ // Statue reason. Default "OK".
|
|
|
|
|
+ Reason string `protobuf:"bytes,2,opt,name=reason" json:"reason,omitempty"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *Status) Reset() { *m = Status{} }
|
|
|
|
|
+func (m *Status) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*Status) ProtoMessage() {}
|
|
|
|
|
+func (*Status) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
|
+
|
|
|
type ResponseConfig struct {
|
|
type ResponseConfig struct {
|
|
|
- Version string `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`
|
|
|
|
|
- Status string `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
|
|
|
|
|
- Reason string `protobuf:"bytes,3,opt,name=reason" json:"reason,omitempty"`
|
|
|
|
|
- Header []*Header `protobuf:"bytes,4,rep,name=header" json:"header,omitempty"`
|
|
|
|
|
|
|
+ Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`
|
|
|
|
|
+ Status *Status `protobuf:"bytes,2,opt,name=status" json:"status,omitempty"`
|
|
|
|
|
+ Header []*Header `protobuf:"bytes,3,rep,name=header" json:"header,omitempty"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *ResponseConfig) Reset() { *m = ResponseConfig{} }
|
|
func (m *ResponseConfig) Reset() { *m = ResponseConfig{} }
|
|
|
func (m *ResponseConfig) String() string { return proto.CompactTextString(m) }
|
|
func (m *ResponseConfig) String() string { return proto.CompactTextString(m) }
|
|
|
func (*ResponseConfig) ProtoMessage() {}
|
|
func (*ResponseConfig) ProtoMessage() {}
|
|
|
-func (*ResponseConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
|
|
|
+func (*ResponseConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
|
+
|
|
|
|
|
+func (m *ResponseConfig) GetVersion() *Version {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Version
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *ResponseConfig) GetStatus() *Status {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Status
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
|
|
|
func (m *ResponseConfig) GetHeader() []*Header {
|
|
func (m *ResponseConfig) GetHeader() []*Header {
|
|
|
if m != nil {
|
|
if m != nil {
|
|
@@ -93,11 +146,38 @@ func (m *ResponseConfig) GetHeader() []*Header {
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+type Config struct {
|
|
|
|
|
+ Request *RequestConfig `protobuf:"bytes,1,opt,name=request" json:"request,omitempty"`
|
|
|
|
|
+ Response *ResponseConfig `protobuf:"bytes,2,opt,name=response" json:"response,omitempty"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *Config) Reset() { *m = Config{} }
|
|
|
|
|
+func (m *Config) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*Config) ProtoMessage() {}
|
|
|
|
|
+func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
|
+
|
|
|
|
|
+func (m *Config) GetRequest() *RequestConfig {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Request
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *Config) GetResponse() *ResponseConfig {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Response
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
func init() {
|
|
func init() {
|
|
|
proto.RegisterType((*Header)(nil), "v2ray.core.transport.internet.authenticators.http.Header")
|
|
proto.RegisterType((*Header)(nil), "v2ray.core.transport.internet.authenticators.http.Header")
|
|
|
- proto.RegisterType((*HeaderEnding)(nil), "v2ray.core.transport.internet.authenticators.http.HeaderEnding")
|
|
|
|
|
|
|
+ proto.RegisterType((*Version)(nil), "v2ray.core.transport.internet.authenticators.http.Version")
|
|
|
|
|
+ proto.RegisterType((*Method)(nil), "v2ray.core.transport.internet.authenticators.http.Method")
|
|
|
proto.RegisterType((*RequestConfig)(nil), "v2ray.core.transport.internet.authenticators.http.RequestConfig")
|
|
proto.RegisterType((*RequestConfig)(nil), "v2ray.core.transport.internet.authenticators.http.RequestConfig")
|
|
|
|
|
+ proto.RegisterType((*Status)(nil), "v2ray.core.transport.internet.authenticators.http.Status")
|
|
|
proto.RegisterType((*ResponseConfig)(nil), "v2ray.core.transport.internet.authenticators.http.ResponseConfig")
|
|
proto.RegisterType((*ResponseConfig)(nil), "v2ray.core.transport.internet.authenticators.http.ResponseConfig")
|
|
|
|
|
+ proto.RegisterType((*Config)(nil), "v2ray.core.transport.internet.authenticators.http.Config")
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
func init() {
|
|
@@ -105,24 +185,30 @@ func init() {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
var fileDescriptor0 = []byte{
|
|
var fileDescriptor0 = []byte{
|
|
|
- // 303 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x92, 0x31, 0x4b, 0xfc, 0x40,
|
|
|
|
|
- 0x10, 0xc5, 0xc9, 0xe5, 0xfe, 0xf9, 0x73, 0x73, 0x2a, 0xb2, 0x88, 0x6c, 0x79, 0x1c, 0x16, 0x57,
|
|
|
|
|
- 0x6d, 0xf0, 0xc4, 0xc2, 0xf6, 0x44, 0x10, 0x2b, 0x4d, 0x69, 0xb7, 0xe6, 0xc6, 0x4b, 0xc0, 0xec,
|
|
|
|
|
- 0xc4, 0xd9, 0x49, 0xc0, 0x2f, 0x64, 0xe7, 0x77, 0x94, 0x64, 0x13, 0xc5, 0xce, 0x2b, 0xec, 0xf6,
|
|
|
|
|
- 0xcd, 0xce, 0xef, 0xcd, 0x1b, 0x18, 0xd8, 0xb4, 0x6b, 0xb6, 0x6f, 0x26, 0xa7, 0x2a, 0xcd, 0x89,
|
|
|
|
|
- 0x31, 0x15, 0xb6, 0xce, 0xd7, 0xc4, 0x92, 0x96, 0x4e, 0x90, 0x1d, 0x4a, 0x6a, 0x1b, 0x29, 0xd0,
|
|
|
|
|
- 0x49, 0x99, 0x5b, 0x21, 0xf6, 0x69, 0x21, 0x52, 0xa7, 0x39, 0xb9, 0xe7, 0x72, 0x67, 0x6a, 0x26,
|
|
|
|
|
- 0x21, 0x75, 0x3e, 0x7a, 0x30, 0x9a, 0x2f, 0xde, 0x8c, 0xbc, 0xf9, 0xc9, 0x9b, 0x8e, 0x5f, 0xae,
|
|
|
|
|
- 0x21, 0xb9, 0x45, 0xbb, 0x45, 0x56, 0x0a, 0xa6, 0xce, 0x56, 0xa8, 0xa3, 0x45, 0xb4, 0x9a, 0x65,
|
|
|
|
|
- 0xfd, 0x5b, 0x9d, 0xc0, 0xbf, 0xd6, 0xbe, 0x34, 0xa8, 0x27, 0x8b, 0x78, 0x35, 0xcb, 0x82, 0x58,
|
|
|
|
|
- 0x9e, 0xc1, 0x41, 0x60, 0x6e, 0xdc, 0xb6, 0x74, 0xbb, 0xef, 0xae, 0x80, 0x0e, 0x5d, 0xef, 0x11,
|
|
|
|
|
- 0x1c, 0x66, 0xf8, 0xda, 0xa0, 0x97, 0xeb, 0x3e, 0xa4, 0xd2, 0xf0, 0xbf, 0x45, 0xf6, 0x25, 0xb9,
|
|
|
|
|
- 0xa1, 0x73, 0x94, 0xea, 0x14, 0x92, 0x0a, 0xa5, 0xa0, 0xad, 0x9e, 0xf4, 0x1f, 0x83, 0x52, 0xc7,
|
|
|
|
|
- 0x10, 0x37, 0x5c, 0xea, 0xb8, 0x9f, 0xde, 0x3d, 0xd5, 0x03, 0x24, 0x45, 0x3f, 0x5b, 0x4f, 0x17,
|
|
|
|
|
- 0xf1, 0x6a, 0xbe, 0xbe, 0x32, 0x7b, 0xef, 0x6c, 0x42, 0xf8, 0x6c, 0x30, 0x5a, 0x7e, 0x44, 0x70,
|
|
|
|
|
- 0x94, 0xa1, 0xaf, 0xc9, 0x79, 0xfc, 0x4d, 0x52, 0x2f, 0x56, 0x1a, 0x3f, 0x26, 0x0d, 0xaa, 0xab,
|
|
|
|
|
- 0x33, 0x5a, 0x4f, 0x4e, 0xc7, 0xa1, 0x1e, 0xd4, 0x1f, 0xe4, 0xdd, 0xdc, 0xc1, 0x65, 0x4e, 0xd5,
|
|
|
|
|
- 0xfe, 0x3e, 0x9b, 0x79, 0xd8, 0xee, 0xbe, 0xbb, 0x95, 0xc7, 0x69, 0x57, 0x7a, 0x4a, 0xfa, 0xc3,
|
|
|
|
|
- 0xb9, 0xf8, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x78, 0x8c, 0xa7, 0x40, 0x7e, 0x02, 0x00, 0x00,
|
|
|
|
|
|
|
+ // 389 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x94, 0xc1, 0x4e, 0xe3, 0x30,
|
|
|
|
|
+ 0x10, 0x40, 0xd5, 0xa4, 0x9b, 0x6e, 0xa7, 0xda, 0xd5, 0xca, 0x5a, 0xad, 0x72, 0xda, 0xad, 0x72,
|
|
|
|
|
+ 0xea, 0xc9, 0xd1, 0x76, 0x97, 0x03, 0x9c, 0xa0, 0x5c, 0x10, 0x12, 0x12, 0x18, 0xc4, 0xa1, 0x12,
|
|
|
|
|
+ 0x07, 0x93, 0x0e, 0x24, 0x12, 0xb1, 0x83, 0xed, 0x54, 0xe2, 0x1f, 0xf8, 0x05, 0xbe, 0x86, 0x1f,
|
|
|
|
|
+ 0x43, 0xb1, 0x9d, 0xd2, 0x1e, 0x38, 0x34, 0xc0, 0xcd, 0x4e, 0x66, 0x9e, 0x67, 0xde, 0x58, 0x86,
|
|
|
|
|
+ 0xd9, 0x72, 0xaa, 0xf8, 0x03, 0xcd, 0x64, 0x99, 0x66, 0x52, 0x61, 0x6a, 0x14, 0x17, 0xba, 0x92,
|
|
|
|
|
+ 0xca, 0xa4, 0x85, 0x30, 0xa8, 0x04, 0x9a, 0x94, 0xd7, 0x26, 0x47, 0x61, 0x8a, 0x8c, 0x1b, 0xa9,
|
|
|
|
|
+ 0x74, 0x9a, 0x1b, 0x53, 0xa5, 0x99, 0x14, 0x37, 0xc5, 0x2d, 0xad, 0x94, 0x34, 0x92, 0xfc, 0x6d,
|
|
|
|
|
+ 0x19, 0x0a, 0xe9, 0x2a, 0x9f, 0xb6, 0xf9, 0x74, 0x33, 0x9f, 0x36, 0xf9, 0xc9, 0x14, 0xa2, 0x23,
|
|
|
|
|
+ 0xe4, 0x0b, 0x54, 0x84, 0x40, 0x5f, 0xf0, 0x12, 0xe3, 0xde, 0xb8, 0x37, 0x19, 0x32, 0xbb, 0x26,
|
|
|
|
|
+ 0x3f, 0xe1, 0xcb, 0x92, 0xdf, 0xd5, 0x18, 0x07, 0xe3, 0x70, 0x32, 0x64, 0x6e, 0x93, 0xfc, 0x81,
|
|
|
|
|
+ 0xc1, 0x25, 0x2a, 0x5d, 0x48, 0xf1, 0x1a, 0xe0, 0xb2, 0x7c, 0xc0, 0x6f, 0x88, 0x4e, 0xd0, 0xe4,
|
|
|
|
|
+ 0x72, 0xf1, 0xc6, 0xff, 0xa7, 0x00, 0xbe, 0x31, 0xbc, 0xaf, 0x51, 0x9b, 0x43, 0x5b, 0x3f, 0xb9,
|
|
|
|
|
+ 0x80, 0xc1, 0xd2, 0x21, 0x6d, 0xe4, 0x68, 0xba, 0x47, 0xb7, 0xee, 0x85, 0xfa, 0xa2, 0x58, 0x8b,
|
|
|
|
|
+ 0x22, 0x67, 0x10, 0x95, 0xb6, 0x8e, 0x38, 0xb0, 0xd0, 0xdd, 0x0e, 0x50, 0xd7, 0x08, 0xf3, 0x20,
|
|
|
|
|
+ 0xf2, 0x03, 0xc2, 0x5a, 0x15, 0x71, 0x68, 0x7d, 0x34, 0xcb, 0xe6, 0x90, 0xdc, 0x1a, 0x8c, 0xfb,
|
|
|
|
|
+ 0xe3, 0xb0, 0xe3, 0x21, 0x6e, 0x04, 0xcc, 0x83, 0x92, 0xff, 0x10, 0x9d, 0x1b, 0x6e, 0x6a, 0xdd,
|
|
|
|
|
+ 0x0c, 0x25, 0x93, 0x8b, 0xd5, 0x50, 0x9a, 0x35, 0xf9, 0x05, 0x91, 0x42, 0xae, 0xa5, 0xb0, 0x5d,
|
|
|
|
|
+ 0x0d, 0x99, 0xdf, 0x25, 0x8f, 0x01, 0x7c, 0x67, 0xa8, 0x2b, 0x29, 0x34, 0x7e, 0xb6, 0x56, 0x6d,
|
|
|
|
|
+ 0xcb, 0x7b, 0x87, 0x56, 0xd7, 0x1f, 0xf3, 0xa0, 0x35, 0x89, 0xe1, 0x47, 0x49, 0x7c, 0xee, 0x41,
|
|
|
|
|
+ 0xe4, 0x35, 0xcc, 0x61, 0xa0, 0xdc, 0x75, 0xf3, 0x1a, 0xf6, 0x3b, 0xe0, 0x37, 0x2e, 0x2c, 0x6b,
|
|
|
|
|
+ 0x81, 0xe4, 0x0a, 0xbe, 0x2a, 0x2f, 0xdd, 0xeb, 0x38, 0xe8, 0x04, 0x5f, 0x9f, 0x1b, 0x5b, 0x21,
|
|
|
|
|
+ 0x67, 0xc7, 0xb0, 0x93, 0xc9, 0x72, 0x7b, 0xe2, 0x6c, 0xe4, 0x50, 0xa7, 0xcd, 0xc3, 0x30, 0xef,
|
|
|
|
|
+ 0x37, 0x9f, 0xae, 0x23, 0xfb, 0x4a, 0xfc, 0x7b, 0x09, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x1d, 0x02,
|
|
|
|
|
+ 0x42, 0x6b, 0x04, 0x00, 0x00,
|
|
|
}
|
|
}
|