338 lines
9.9 KiB
Go
338 lines
9.9 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: msg.proto
|
|
|
|
package pingtunnel
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = 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.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type MyMsg_TYPE int32
|
|
|
|
const (
|
|
MyMsg_DATA MyMsg_TYPE = 0
|
|
MyMsg_PING MyMsg_TYPE = 1
|
|
MyMsg_MAGIC MyMsg_TYPE = 57005
|
|
)
|
|
|
|
var MyMsg_TYPE_name = map[int32]string{
|
|
0: "DATA",
|
|
1: "PING",
|
|
57005: "MAGIC",
|
|
}
|
|
|
|
var MyMsg_TYPE_value = map[string]int32{
|
|
"DATA": 0,
|
|
"PING": 1,
|
|
"MAGIC": 57005,
|
|
}
|
|
|
|
func (x MyMsg_TYPE) String() string {
|
|
return proto.EnumName(MyMsg_TYPE_name, int32(x))
|
|
}
|
|
|
|
func (MyMsg_TYPE) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{0, 0}
|
|
}
|
|
|
|
type Frame_TYPE int32
|
|
|
|
const (
|
|
Frame_DATA Frame_TYPE = 0
|
|
Frame_REQ Frame_TYPE = 1
|
|
Frame_ACK Frame_TYPE = 2
|
|
Frame_PING Frame_TYPE = 3
|
|
Frame_PONG Frame_TYPE = 4
|
|
Frame_REG Frame_TYPE = 5
|
|
Frame_REGACK Frame_TYPE = 6
|
|
Frame_REGAGAIN Frame_TYPE = 7
|
|
)
|
|
|
|
var Frame_TYPE_name = map[int32]string{
|
|
0: "DATA",
|
|
1: "REQ",
|
|
2: "ACK",
|
|
3: "PING",
|
|
4: "PONG",
|
|
5: "REG",
|
|
6: "REGACK",
|
|
7: "REGAGAIN",
|
|
}
|
|
|
|
var Frame_TYPE_value = map[string]int32{
|
|
"DATA": 0,
|
|
"REQ": 1,
|
|
"ACK": 2,
|
|
"PING": 3,
|
|
"PONG": 4,
|
|
"REG": 5,
|
|
"REGACK": 6,
|
|
"REGAGAIN": 7,
|
|
}
|
|
|
|
func (x Frame_TYPE) String() string {
|
|
return proto.EnumName(Frame_TYPE_name, int32(x))
|
|
}
|
|
|
|
func (Frame_TYPE) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{1, 0}
|
|
}
|
|
|
|
type MyMsg struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Type int32 `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
|
|
Target string `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
|
|
Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
|
|
Rproto int32 `protobuf:"zigzag32,5,opt,name=rproto,proto3" json:"rproto,omitempty"`
|
|
Magic int32 `protobuf:"zigzag32,6,opt,name=magic,proto3" json:"magic,omitempty"`
|
|
Key int32 `protobuf:"zigzag32,7,opt,name=key,proto3" json:"key,omitempty"`
|
|
Tcpmode int32 `protobuf:"varint,8,opt,name=tcpmode,proto3" json:"tcpmode,omitempty"`
|
|
TcpmodeBuffersize int32 `protobuf:"varint,9,opt,name=tcpmode_buffersize,json=tcpmodeBuffersize,proto3" json:"tcpmode_buffersize,omitempty"`
|
|
TcpmodeMaxwin int32 `protobuf:"varint,10,opt,name=tcpmode_maxwin,json=tcpmodeMaxwin,proto3" json:"tcpmode_maxwin,omitempty"`
|
|
TcpmodeResendTimems int32 `protobuf:"varint,11,opt,name=tcpmode_resend_timems,json=tcpmodeResendTimems,proto3" json:"tcpmode_resend_timems,omitempty"`
|
|
Timeout int32 `protobuf:"varint,12,opt,name=timeout,proto3" json:"timeout,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *MyMsg) Reset() { *m = MyMsg{} }
|
|
func (m *MyMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*MyMsg) ProtoMessage() {}
|
|
func (*MyMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{0}
|
|
}
|
|
|
|
func (m *MyMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_MyMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *MyMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_MyMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *MyMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MyMsg.Merge(m, src)
|
|
}
|
|
func (m *MyMsg) XXX_Size() int {
|
|
return xxx_messageInfo_MyMsg.Size(m)
|
|
}
|
|
func (m *MyMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MyMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MyMsg proto.InternalMessageInfo
|
|
|
|
func (m *MyMsg) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MyMsg) GetType() int32 {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MyMsg) GetTarget() string {
|
|
if m != nil {
|
|
return m.Target
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MyMsg) GetData() []byte {
|
|
if m != nil {
|
|
return m.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MyMsg) GetRproto() int32 {
|
|
if m != nil {
|
|
return m.Rproto
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MyMsg) GetMagic() int32 {
|
|
if m != nil {
|
|
return m.Magic
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MyMsg) GetKey() int32 {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MyMsg) GetTcpmode() int32 {
|
|
if m != nil {
|
|
return m.Tcpmode
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MyMsg) GetTcpmodeBuffersize() int32 {
|
|
if m != nil {
|
|
return m.TcpmodeBuffersize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MyMsg) GetTcpmodeMaxwin() int32 {
|
|
if m != nil {
|
|
return m.TcpmodeMaxwin
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MyMsg) GetTcpmodeResendTimems() int32 {
|
|
if m != nil {
|
|
return m.TcpmodeResendTimems
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *MyMsg) GetTimeout() int32 {
|
|
if m != nil {
|
|
return m.Timeout
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Frame struct {
|
|
Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
|
|
Resend bool `protobuf:"varint,2,opt,name=resend,proto3" json:"resend,omitempty"`
|
|
Sendtime int64 `protobuf:"varint,3,opt,name=sendtime,proto3" json:"sendtime,omitempty"`
|
|
Id int32 `protobuf:"varint,4,opt,name=id,proto3" json:"id,omitempty"`
|
|
Data []byte `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"`
|
|
Dataid []int32 `protobuf:"varint,6,rep,packed,name=dataid,proto3" json:"dataid,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Frame) Reset() { *m = Frame{} }
|
|
func (m *Frame) String() string { return proto.CompactTextString(m) }
|
|
func (*Frame) ProtoMessage() {}
|
|
func (*Frame) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c06e4cca6c2cc899, []int{1}
|
|
}
|
|
|
|
func (m *Frame) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Frame.Unmarshal(m, b)
|
|
}
|
|
func (m *Frame) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Frame.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Frame) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Frame.Merge(m, src)
|
|
}
|
|
func (m *Frame) XXX_Size() int {
|
|
return xxx_messageInfo_Frame.Size(m)
|
|
}
|
|
func (m *Frame) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Frame.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Frame proto.InternalMessageInfo
|
|
|
|
func (m *Frame) GetType() int32 {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Frame) GetResend() bool {
|
|
if m != nil {
|
|
return m.Resend
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *Frame) GetSendtime() int64 {
|
|
if m != nil {
|
|
return m.Sendtime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Frame) GetId() int32 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Frame) GetData() []byte {
|
|
if m != nil {
|
|
return m.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Frame) GetDataid() []int32 {
|
|
if m != nil {
|
|
return m.Dataid
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("MyMsg_TYPE", MyMsg_TYPE_name, MyMsg_TYPE_value)
|
|
proto.RegisterEnum("Frame_TYPE", Frame_TYPE_name, Frame_TYPE_value)
|
|
proto.RegisterType((*MyMsg)(nil), "MyMsg")
|
|
proto.RegisterType((*Frame)(nil), "Frame")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("msg.proto", fileDescriptor_c06e4cca6c2cc899) }
|
|
|
|
var fileDescriptor_c06e4cca6c2cc899 = []byte{
|
|
// 407 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x92, 0xcd, 0x8e, 0xd3, 0x30,
|
|
0x14, 0x85, 0x71, 0x12, 0xa7, 0xe9, 0x9d, 0x32, 0xf2, 0x5c, 0x7e, 0x64, 0xb1, 0x8a, 0x2a, 0x21,
|
|
0xb2, 0x81, 0x05, 0x3c, 0x41, 0x66, 0x28, 0x51, 0x85, 0x5a, 0x06, 0xab, 0x9b, 0x61, 0x33, 0xca,
|
|
0x4c, 0x3c, 0x91, 0x05, 0x4e, 0xab, 0xc4, 0x15, 0x94, 0x77, 0xe2, 0x11, 0x78, 0x1d, 0x1e, 0x03,
|
|
0x21, 0xdf, 0xba, 0x95, 0x2a, 0x56, 0x3e, 0xe7, 0xde, 0x4f, 0xf5, 0xa9, 0x4f, 0x60, 0x6c, 0x87,
|
|
0xf6, 0xcd, 0xa6, 0x5f, 0xbb, 0xf5, 0xf4, 0x6f, 0x04, 0x7c, 0xb1, 0x5b, 0x0c, 0x2d, 0x9e, 0x43,
|
|
0x64, 0x1a, 0xc9, 0x72, 0x56, 0x8c, 0x55, 0x64, 0x1a, 0x44, 0x48, 0xdc, 0x6e, 0xa3, 0x65, 0x94,
|
|
0xb3, 0x82, 0x2b, 0xd2, 0xf8, 0x1c, 0x52, 0x57, 0xf7, 0xad, 0x76, 0x32, 0x26, 0x2e, 0x38, 0xcf,
|
|
0x36, 0xb5, 0xab, 0x65, 0x92, 0xb3, 0x62, 0xa2, 0x48, 0x7b, 0xb6, 0xa7, 0x3b, 0x24, 0xcf, 0x59,
|
|
0x71, 0xa1, 0x82, 0xc3, 0xa7, 0xc0, 0x6d, 0xdd, 0x9a, 0x7b, 0x99, 0xd2, 0x78, 0x6f, 0x50, 0x40,
|
|
0xfc, 0x55, 0xef, 0xe4, 0x88, 0x66, 0x5e, 0xa2, 0x84, 0x91, 0xbb, 0xdf, 0xd8, 0x75, 0xa3, 0x65,
|
|
0x46, 0x11, 0x0e, 0x16, 0x5f, 0x03, 0x06, 0x79, 0x7b, 0xb7, 0x7d, 0x78, 0xd0, 0xfd, 0x60, 0x7e,
|
|
0x6a, 0x39, 0x26, 0xe8, 0x22, 0x6c, 0x2e, 0x8f, 0x0b, 0x7c, 0x09, 0xe7, 0x07, 0xdc, 0xd6, 0x3f,
|
|
0xbe, 0x9b, 0x4e, 0x02, 0xa1, 0x8f, 0xc3, 0x74, 0x41, 0x43, 0x7c, 0x0b, 0xcf, 0x0e, 0x58, 0xaf,
|
|
0x07, 0xdd, 0x35, 0xb7, 0xce, 0x58, 0x6d, 0x07, 0x79, 0x46, 0xf4, 0x93, 0xb0, 0x54, 0xb4, 0x5b,
|
|
0xd1, 0x8a, 0x32, 0x1a, 0xab, 0xd7, 0x5b, 0x27, 0x27, 0x21, 0xe3, 0xde, 0x4e, 0x5f, 0x41, 0xb2,
|
|
0xba, 0xb9, 0x9e, 0x61, 0x06, 0xc9, 0xfb, 0x72, 0x55, 0x8a, 0x47, 0x5e, 0x5d, 0xcf, 0x97, 0x95,
|
|
0x60, 0x78, 0x06, 0x7c, 0x51, 0x56, 0xf3, 0x2b, 0xf1, 0xeb, 0x77, 0x3c, 0xfd, 0xc3, 0x80, 0x7f,
|
|
0xe8, 0x6b, 0xab, 0x8f, 0x0f, 0xce, 0x4e, 0x1f, 0x7c, 0x1f, 0x86, 0x6a, 0xc8, 0x54, 0x70, 0xf8,
|
|
0x02, 0x32, 0x7f, 0xfa, 0xdb, 0xa8, 0x8a, 0x58, 0x1d, 0x7d, 0x28, 0x32, 0xa1, 0x5f, 0x09, 0x45,
|
|
0x52, 0x39, 0xfc, 0xb4, 0x1c, 0x7f, 0x9a, 0x46, 0xa6, 0x79, 0x5c, 0x70, 0x15, 0xdc, 0xf4, 0xe6,
|
|
0xbf, 0xd8, 0x23, 0x88, 0xd5, 0xec, 0xb3, 0x60, 0x5e, 0x94, 0x57, 0x1f, 0x45, 0x74, 0xfc, 0x23,
|
|
0x31, 0xa9, 0x4f, 0xcb, 0x4a, 0x24, 0x7b, 0xaa, 0x12, 0x1c, 0x01, 0x52, 0x35, 0xab, 0x3c, 0x98,
|
|
0xe2, 0x04, 0x32, 0xaf, 0xab, 0x72, 0xbe, 0x14, 0xa3, 0xcb, 0xc9, 0x17, 0xd8, 0x98, 0xae, 0x75,
|
|
0xdb, 0xae, 0xd3, 0xdf, 0xee, 0x52, 0xfa, 0x18, 0xde, 0xfd, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x4e,
|
|
0xfd, 0x1d, 0x91, 0x8b, 0x02, 0x00, 0x00,
|
|
}
|