| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 | // Code generated by protoc-gen-go.// source: v2ray.com/core/common/net/network.proto// DO NOT EDIT!package netimport 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.Inftype Network int32const (	Network_Unknown   Network = 0	Network_RawTCP    Network = 1	Network_TCP       Network = 2	Network_UDP       Network = 3	Network_KCP       Network = 4	Network_WebSocket Network = 5)var Network_name = map[int32]string{	0: "Unknown",	1: "RawTCP",	2: "TCP",	3: "UDP",	4: "KCP",	5: "WebSocket",}var Network_value = map[string]int32{	"Unknown":   0,	"RawTCP":    1,	"TCP":       2,	"UDP":       3,	"KCP":       4,	"WebSocket": 5,}func (x Network) String() string {	return proto.EnumName(Network_name, int32(x))}func (Network) EnumDescriptor() ([]byte, []int) { return fileDescriptor2, []int{0} }type NetworkList struct {	Network []Network `protobuf:"varint,1,rep,packed,name=network,enum=com.v2ray.core.common.net.Network" json:"network,omitempty"`}func (m *NetworkList) Reset()                    { *m = NetworkList{} }func (m *NetworkList) String() string            { return proto.CompactTextString(m) }func (*NetworkList) ProtoMessage()               {}func (*NetworkList) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{0} }func init() {	proto.RegisterType((*NetworkList)(nil), "com.v2ray.core.common.net.NetworkList")	proto.RegisterEnum("com.v2ray.core.common.net.Network", Network_name, Network_value)}func init() { proto.RegisterFile("v2ray.com/core/common/net/network.proto", fileDescriptor2) }var fileDescriptor2 = []byte{	// 192 bytes of a gzipped FileDescriptorProto	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0x52, 0x2f, 0x33, 0x2a, 0x4a,	0xac, 0xd4, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xce, 0x2f, 0x4a, 0xd5, 0x4f, 0xce, 0xcf, 0xcd, 0xcd,	0xcf, 0xd3, 0xcf, 0x4b, 0x2d, 0x01, 0xe1, 0xf2, 0xfc, 0xa2, 0x6c, 0xbd, 0x82, 0xa2, 0xfc, 0x92,	0x7c, 0x21, 0xc9, 0xe4, 0xfc, 0x5c, 0x3d, 0x98, 0xe2, 0xa2, 0x54, 0x3d, 0x88, 0x42, 0xbd, 0xbc,	0xd4, 0x12, 0x25, 0x6f, 0x2e, 0x6e, 0x3f, 0x88, 0x5a, 0x9f, 0xcc, 0xe2, 0x12, 0x21, 0x1b, 0x2e,	0x76, 0xa8, 0x56, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x3e, 0x23, 0x25, 0x3d, 0x9c, 0x7a, 0xf5, 0xa0,	0x1a, 0x83, 0x60, 0x5a, 0xb4, 0x7c, 0xb8, 0xd8, 0xa1, 0x62, 0x42, 0xdc, 0x5c, 0xec, 0xa1, 0x79,	0xd9, 0x79, 0xf9, 0xe5, 0x79, 0x02, 0x0c, 0x42, 0x5c, 0x5c, 0x6c, 0x41, 0x89, 0xe5, 0x21, 0xce,	0x01, 0x02, 0x8c, 0x42, 0xec, 0x5c, 0xcc, 0x20, 0x06, 0x13, 0x88, 0x11, 0xea, 0x12, 0x20, 0xc0,	0x0c, 0x62, 0x78, 0x3b, 0x07, 0x08, 0xb0, 0x08, 0xf1, 0x72, 0x71, 0x86, 0xa7, 0x26, 0x05, 0xe7,	0x27, 0x67, 0xa7, 0x96, 0x08, 0xb0, 0x3a, 0xb1, 0x46, 0x31, 0xe7, 0xa5, 0x96, 0x24, 0xb1, 0x81,	0xfd, 0x60, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x8e, 0x1a, 0x8a, 0xb3, 0xee, 0x00, 0x00, 0x00,}
 |