282 lines
8.5 KiB
Go
282 lines
8.5 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_CATCH MyMsg_TYPE = 2
|
|
)
|
|
|
|
var MyMsg_TYPE_name = map[int32]string{
|
|
0: "DATA",
|
|
1: "PING",
|
|
2: "CATCH",
|
|
}
|
|
|
|
var MyMsg_TYPE_value = map[string]int32{
|
|
"DATA": 0,
|
|
"PING": 1,
|
|
"CATCH": 2,
|
|
}
|
|
|
|
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 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:"varint,5,opt,name=rproto,proto3" json:"rproto,omitempty"`
|
|
Catch int32 `protobuf:"varint,6,opt,name=catch,proto3" json:"catch,omitempty"`
|
|
Key int32 `protobuf:"varint,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"`
|
|
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) GetCatch() int32 {
|
|
if m != nil {
|
|
return m.Catch
|
|
}
|
|
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
|
|
}
|
|
|
|
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.RegisterType((*MyMsg)(nil), "MyMsg")
|
|
proto.RegisterType((*Frame)(nil), "Frame")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("msg.proto", fileDescriptor_c06e4cca6c2cc899) }
|
|
|
|
var fileDescriptor_c06e4cca6c2cc899 = []byte{
|
|
// 339 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x51, 0xcb, 0x6e, 0xe2, 0x30,
|
|
0x14, 0x1d, 0x27, 0x71, 0x48, 0xee, 0x30, 0x28, 0x73, 0x67, 0x5a, 0x59, 0x5d, 0x45, 0x48, 0x48,
|
|
0x6c, 0xda, 0x45, 0xfb, 0x05, 0x40, 0x9f, 0x0b, 0x2a, 0x14, 0x65, 0xd3, 0x6e, 0x50, 0x20, 0x26,
|
|
0xb5, 0xda, 0x84, 0x28, 0x31, 0x6a, 0xe9, 0x2f, 0xf4, 0x2f, 0xfb, 0x25, 0x95, 0x2f, 0x06, 0x89,
|
|
0x95, 0xcf, 0x4b, 0xb6, 0x75, 0x0e, 0x84, 0x65, 0x5b, 0x5c, 0xd4, 0xcd, 0x5a, 0xaf, 0xfb, 0xdf,
|
|
0x0e, 0xf0, 0xe9, 0x76, 0xda, 0x16, 0xd8, 0x03, 0x47, 0xe5, 0x82, 0xc5, 0x6c, 0x18, 0x26, 0x8e,
|
|
0xca, 0x11, 0xc1, 0xd3, 0xdb, 0x5a, 0x0a, 0x27, 0x66, 0x43, 0x9e, 0x10, 0xc6, 0x53, 0xf0, 0x75,
|
|
0xd6, 0x14, 0x52, 0x0b, 0x97, 0x72, 0x96, 0x99, 0x6c, 0x9e, 0xe9, 0x4c, 0x78, 0x31, 0x1b, 0x76,
|
|
0x13, 0xc2, 0x26, 0xdb, 0xd0, 0x1b, 0x82, 0xd3, 0x0d, 0x96, 0xe1, 0x7f, 0xe0, 0xcb, 0x4c, 0x2f,
|
|
0x5f, 0x84, 0x4f, 0xf2, 0x8e, 0x60, 0x04, 0xee, 0xab, 0xdc, 0x8a, 0x0e, 0x69, 0x06, 0xa2, 0x80,
|
|
0x8e, 0x5e, 0xd6, 0xe5, 0x3a, 0x97, 0x22, 0x20, 0x75, 0x4f, 0xf1, 0x1c, 0xd0, 0xc2, 0xf9, 0x62,
|
|
0xb3, 0x5a, 0xc9, 0xa6, 0x55, 0x9f, 0x52, 0x84, 0x14, 0xfa, 0x6b, 0x9d, 0xf1, 0xc1, 0xc0, 0x01,
|
|
0xf4, 0xf6, 0xf1, 0x32, 0xfb, 0x78, 0x57, 0x95, 0x00, 0x8a, 0xfe, 0xb1, 0xea, 0x94, 0x44, 0xbc,
|
|
0x84, 0x93, 0x7d, 0xac, 0x91, 0xad, 0xac, 0xf2, 0xb9, 0x56, 0xa5, 0x2c, 0x5b, 0xf1, 0x9b, 0xd2,
|
|
0xff, 0xac, 0x99, 0x90, 0x97, 0x92, 0xd5, 0x1f, 0x80, 0x97, 0x3e, 0xcd, 0x6e, 0x30, 0x00, 0xef,
|
|
0x7a, 0x94, 0x8e, 0xa2, 0x5f, 0x06, 0xcd, 0x1e, 0x1e, 0xef, 0x22, 0x86, 0x21, 0xf0, 0xc9, 0x28,
|
|
0x9d, 0xdc, 0x47, 0x4e, 0xff, 0x8b, 0x01, 0xbf, 0x6d, 0xb2, 0x52, 0x1e, 0x4a, 0x65, 0xc7, 0xa5,
|
|
0xee, 0x1e, 0xa4, 0xaa, 0x83, 0xc4, 0x32, 0x3c, 0x83, 0xc0, 0x9c, 0xe6, 0x17, 0x54, 0xb7, 0x9b,
|
|
0x1c, 0xb8, 0x1d, 0xcb, 0xa3, 0x5b, 0xec, 0x58, 0x34, 0x00, 0x3f, 0x1e, 0xc0, 0x9c, 0x2a, 0x17,
|
|
0x7e, 0xec, 0x9a, 0x01, 0x76, 0x6c, 0xdc, 0x7d, 0x86, 0x5a, 0x55, 0x85, 0xde, 0x54, 0x95, 0x7c,
|
|
0x5b, 0xf8, 0xb4, 0xca, 0xd5, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb6, 0x1b, 0xbb, 0x28, 0x14,
|
|
0x02, 0x00, 0x00,
|
|
}
|