| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 | // Code generated by protoc-gen-go.// source: v2ray.com/core/transport/internet/headers/http/config.proto// DO NOT EDIT!/*Package http is a generated protocol buffer package.It is generated from these files:	v2ray.com/core/transport/internet/headers/http/config.protoIt has these top-level messages:	Header	Version	Method	RequestConfig	Status	ResponseConfig	Config*/package httpimport proto "github.com/golang/protobuf/proto"import fmt "fmt"import math "math"// Reference imports to suppress errors if they are not otherwise used.var _ = proto.Marshalvar _ = fmt.Errorfvar _ = math.Inf// This is a compile-time assertion to ensure that this generated file// is compatible with the proto package it is being compiled against.// A compilation error at this line likely means your copy of the// proto package needs to be updated.const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto packagetype Header struct {	// "Accept", "Cookie", etc	Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`	// Each entry must be valid in one piece. Random entry will be chosen if multiple entries present.	Value []string `protobuf:"bytes,2,rep,name=value" json:"value,omitempty"`}func (m *Header) Reset()                    { *m = Header{} }func (m *Header) String() string            { return proto.CompactTextString(m) }func (*Header) ProtoMessage()               {}func (*Header) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }// HTTP version. Default value "1.1".type Version struct {	Value string `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`}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 {	// Full HTTP version like "1.1".	Version *Version `protobuf:"bytes,1,opt,name=version" json:"version,omitempty"`	// GET, POST, CONNECT etc	Method *Method `protobuf:"bytes,2,opt,name=method" json:"method,omitempty"`	// URI like "/login.php"	Uri    []string  `protobuf:"bytes,3,rep,name=uri" json:"uri,omitempty"`	Header []*Header `protobuf:"bytes,4,rep,name=header" json:"header,omitempty"`}func (m *RequestConfig) Reset()                    { *m = RequestConfig{} }func (m *RequestConfig) String() string            { return proto.CompactTextString(m) }func (*RequestConfig) ProtoMessage()               {}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 {	if m != nil {		return m.Header	}	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 {	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) String() string            { return proto.CompactTextString(m) }func (*ResponseConfig) ProtoMessage()               {}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 {	if m != nil {		return m.Header	}	return nil}type Config struct {	// Settings for authenticating requests. If not set, client side will not send authenication header, and server side will bypass authentication.	Request *RequestConfig `protobuf:"bytes,1,opt,name=request" json:"request,omitempty"`	// Settings for authenticating responses. If not set, client side will bypass authentication, and server side will not send authentication header.	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() {	proto.RegisterType((*Header)(nil), "v2ray.core.transport.internet.headers.http.Header")	proto.RegisterType((*Version)(nil), "v2ray.core.transport.internet.headers.http.Version")	proto.RegisterType((*Method)(nil), "v2ray.core.transport.internet.headers.http.Method")	proto.RegisterType((*RequestConfig)(nil), "v2ray.core.transport.internet.headers.http.RequestConfig")	proto.RegisterType((*Status)(nil), "v2ray.core.transport.internet.headers.http.Status")	proto.RegisterType((*ResponseConfig)(nil), "v2ray.core.transport.internet.headers.http.ResponseConfig")	proto.RegisterType((*Config)(nil), "v2ray.core.transport.internet.headers.http.Config")}func init() {	proto.RegisterFile("v2ray.com/core/transport/internet/headers/http/config.proto", fileDescriptor0)}var fileDescriptor0 = []byte{	// 373 bytes of a gzipped FileDescriptorProto	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x93, 0x4f, 0x4b, 0xf3, 0x40,	0x10, 0xc6, 0x49, 0xd3, 0x37, 0x7d, 0x3b, 0x45, 0x91, 0x45, 0x24, 0x27, 0x2d, 0x39, 0x15, 0x0f,	0x1b, 0x48, 0xbd, 0xa8, 0xb7, 0xf6, 0x22, 0x42, 0x41, 0xb6, 0xd0, 0x83, 0xb7, 0x98, 0x8e, 0x36,	0x60, 0x77, 0xe3, 0xee, 0xa6, 0xe0, 0x37, 0xf0, 0x0b, 0xf9, 0xd9, 0xbc, 0xca, 0xfe, 0x49, 0xad,	0x07, 0xc1, 0x28, 0xde, 0x66, 0xda, 0x79, 0x7e, 0xcc, 0xf3, 0x64, 0x07, 0x2e, 0x37, 0x99, 0xcc,	0x9f, 0x69, 0x21, 0xd6, 0x69, 0x21, 0x24, 0xa6, 0x5a, 0xe6, 0x5c, 0x55, 0x42, 0xea, 0xb4, 0xe4,	0x1a, 0x25, 0x47, 0x9d, 0xae, 0x30, 0x5f, 0xa2, 0x54, 0xe9, 0x4a, 0xeb, 0x2a, 0x2d, 0x04, 0xbf,	0x2f, 0x1f, 0x68, 0x25, 0x85, 0x16, 0xe4, 0xb4, 0x11, 0x4b, 0xa4, 0x5b, 0x21, 0x6d, 0x84, 0xd4,	0x0b, 0xa9, 0x11, 0x26, 0x19, 0x44, 0x57, 0xb6, 0x27, 0x04, 0xba, 0x3c, 0x5f, 0x63, 0x1c, 0x0c,	0x83, 0x51, 0x9f, 0xd9, 0x9a, 0x1c, 0xc2, 0xbf, 0x4d, 0xfe, 0x58, 0x63, 0xdc, 0x19, 0x86, 0xa3,	0x3e, 0x73, 0x4d, 0x72, 0x02, 0xbd, 0x05, 0x4a, 0x55, 0x0a, 0xfe, 0x31, 0xe0, 0x54, 0x7e, 0xe0,	0x18, 0xa2, 0x19, 0xea, 0x95, 0x58, 0x7e, 0xf1, 0xff, 0x4b, 0x07, 0xf6, 0x18, 0x3e, 0xd5, 0xa8,	0xf4, 0xd4, 0x2e, 0x4e, 0x66, 0xd0, 0xdb, 0x38, 0xa4, 0x9d, 0x1c, 0x64, 0x63, 0xfa, 0x7d, 0x13,	0xd4, 0x6f, 0xc3, 0x1a, 0x06, 0xb9, 0x86, 0x68, 0x6d, 0x17, 0x88, 0x3b, 0x96, 0x96, 0xb5, 0xa1,	0xb9, 0xd5, 0x99, 0x27, 0x90, 0x03, 0x08, 0x6b, 0x59, 0xc6, 0xa1, 0x4d, 0xc0, 0x94, 0x86, 0xee,	0x04, 0x71, 0x77, 0x18, 0xb6, 0xa5, 0xbb, 0xb4, 0x99, 0x27, 0x24, 0x67, 0x10, 0xcd, 0x75, 0xae,	0x6b, 0x65, 0xf2, 0x2f, 0xc4, 0x72, 0x9b, 0xbf, 0xa9, 0xc9, 0x11, 0x44, 0x12, 0x73, 0x25, 0xb8,	0xf5, 0xd1, 0x67, 0xbe, 0x4b, 0xde, 0x02, 0xd8, 0x67, 0xa8, 0x2a, 0xc1, 0x15, 0xfe, 0x59, 0x82,	0xca, 0xee, 0xf5, 0x93, 0x04, 0x9d, 0x23, 0xe6, 0x09, 0x3b, 0x79, 0x85, 0xbf, 0xce, 0xeb, 0x35,	0x80, 0xc8, 0x3b, 0x9e, 0x43, 0x4f, 0xba, 0x47, 0xe4, 0x1d, 0x9f, 0xb7, 0xe1, 0x7e, 0x7a, 0x7f,	0xac, 0x21, 0x91, 0x05, 0xfc, 0x97, 0x3e, 0x58, 0xef, 0xfc, 0xa2, 0x1d, 0x75, 0xf7, 0xa3, 0xb0,	0x2d, 0x6b, 0x32, 0x05, 0x73, 0xcc, 0x2d, 0x50, 0x93, 0x81, 0x63, 0xdc, 0x98, 0x93, 0xbe, 0xed,	0x9a, 0x9f, 0xee, 0x22, 0x7b, 0xdf, 0xe3, 0xf7, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x13, 0x70,	0x63, 0x1e, 0x04, 0x00, 0x00,}
 |