| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | // Code generated by protoc-gen-go.// source: v2ray.com/core/common/protocol/user.proto// DO NOT EDIT!package protocolimport proto "github.com/golang/protobuf/proto"import fmt "fmt"import math "math"import v2ray_core_common_loader "v2ray.com/core/common/loader"// Reference imports to suppress errors if they are not otherwise used.var _ = proto.Marshalvar _ = fmt.Errorfvar _ = math.Inftype User struct {	Level uint32 `protobuf:"varint,1,opt,name=level" json:"level,omitempty"`	Email string `protobuf:"bytes,2,opt,name=email" json:"email,omitempty"`	// Protocol specific account information.	Account *v2ray_core_common_loader.TypedSettings `protobuf:"bytes,3,opt,name=account" json:"account,omitempty"`}func (m *User) Reset()                    { *m = User{} }func (m *User) String() string            { return proto.CompactTextString(m) }func (*User) ProtoMessage()               {}func (*User) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }func (m *User) GetAccount() *v2ray_core_common_loader.TypedSettings {	if m != nil {		return m.Account	}	return nil}func init() {	proto.RegisterType((*User)(nil), "v2ray.core.common.protocol.User")}func init() { proto.RegisterFile("v2ray.com/core/common/protocol/user.proto", fileDescriptor1) }var fileDescriptor1 = []byte{	// 200 bytes of a gzipped FileDescriptorProto	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x8f, 0x3f, 0xef, 0x82, 0x30,	0x10, 0x86, 0xd3, 0xdf, 0x5f, 0xa9, 0x71, 0x21, 0x0e, 0x84, 0xc1, 0x10, 0x17, 0x70, 0x69, 0x13,	0x8c, 0x1f, 0x40, 0x3e, 0x81, 0x41, 0x5d, 0xdc, 0x6a, 0xb9, 0x18, 0x92, 0x96, 0x23, 0xa5, 0x90,	0xf0, 0xed, 0x0d, 0x34, 0x9d, 0xd4, 0xad, 0xcf, 0x9b, 0xa7, 0x77, 0xef, 0xd1, 0xdd, 0x90, 0x1b,	0x31, 0x32, 0x89, 0x9a, 0x4b, 0x34, 0xc0, 0x25, 0x6a, 0x8d, 0x0d, 0x6f, 0x0d, 0x5a, 0x94, 0xa8,	0x78, 0xdf, 0x81, 0x61, 0x33, 0x85, 0xb1, 0x57, 0x0d, 0x30, 0xa7, 0x31, 0xaf, 0xc5, 0xe9, 0xfb,	0x31, 0x0a, 0x45, 0x05, 0x86, 0xdb, 0xb1, 0x05, 0xe7, 0x6e, 0x7b, 0xfa, 0x73, 0xed, 0xc0, 0x84,	0x6b, 0xfa, 0xab, 0x60, 0x00, 0x15, 0x91, 0x84, 0x64, 0xab, 0xd2, 0xc1, 0x94, 0x82, 0x16, 0xb5,	0x8a, 0xbe, 0x12, 0x92, 0x05, 0xa5, 0x83, 0xf0, 0x48, 0xff, 0x85, 0x94, 0xd8, 0x37, 0x36, 0xfa,	0x4e, 0x48, 0xb6, 0xcc, 0x53, 0xf6, 0x5a, 0xc5, 0xad, 0x62, 0x97, 0xb1, 0x85, 0xea, 0x0c, 0xd6,	0xd6, 0xcd, 0xa3, 0x2b, 0xfd, 0xbf, 0xe2, 0x40, 0x37, 0x12, 0x35, 0xfb, 0x7c, 0x41, 0x11, 0x4c,	0xb5, 0x4e, 0x13, 0xdd, 0x16, 0x3e, 0xbc, 0xff, 0xcd, 0xaf, 0xfd, 0x33, 0x00, 0x00, 0xff, 0xff,	0x68, 0x83, 0xed, 0x6b, 0x26, 0x01, 0x00, 0x00,}
 |