Files
faas/gateway/vendor/github.com/nats-io/stan.go/pb/protocol.pb.go
Alex Ellis (OpenFaaS Ltd) 7ce266adc0 Migrate to Go modules
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2021-01-21 19:04:22 +00:00

3999 lines
96 KiB
Go

// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: protocol.proto
package pb
import (
fmt "fmt"
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
io "io"
math "math"
math_bits "math/bits"
)
// 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.GoGoProtoPackageIsVersion3 // please upgrade the proto package
// Enum for start position type.
type StartPosition int32
const (
StartPosition_NewOnly StartPosition = 0
StartPosition_LastReceived StartPosition = 1
StartPosition_TimeDeltaStart StartPosition = 2
StartPosition_SequenceStart StartPosition = 3
StartPosition_First StartPosition = 4
)
var StartPosition_name = map[int32]string{
0: "NewOnly",
1: "LastReceived",
2: "TimeDeltaStart",
3: "SequenceStart",
4: "First",
}
var StartPosition_value = map[string]int32{
"NewOnly": 0,
"LastReceived": 1,
"TimeDeltaStart": 2,
"SequenceStart": 3,
"First": 4,
}
func (x StartPosition) String() string {
return proto.EnumName(StartPosition_name, int32(x))
}
func (StartPosition) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{0}
}
// How messages are delivered to the STAN cluster
type PubMsg struct {
ClientID string `protobuf:"bytes,1,opt,name=clientID,proto3" json:"clientID,omitempty"`
Guid string `protobuf:"bytes,2,opt,name=guid,proto3" json:"guid,omitempty"`
Subject string `protobuf:"bytes,3,opt,name=subject,proto3" json:"subject,omitempty"`
Reply string `protobuf:"bytes,4,opt,name=reply,proto3" json:"reply,omitempty"`
Data []byte `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"`
ConnID []byte `protobuf:"bytes,6,opt,name=connID,proto3" json:"connID,omitempty"`
Sha256 []byte `protobuf:"bytes,10,opt,name=sha256,proto3" json:"sha256,omitempty"`
}
func (m *PubMsg) Reset() { *m = PubMsg{} }
func (m *PubMsg) String() string { return proto.CompactTextString(m) }
func (*PubMsg) ProtoMessage() {}
func (*PubMsg) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{0}
}
func (m *PubMsg) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *PubMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_PubMsg.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *PubMsg) XXX_Merge(src proto.Message) {
xxx_messageInfo_PubMsg.Merge(m, src)
}
func (m *PubMsg) XXX_Size() int {
return m.Size()
}
func (m *PubMsg) XXX_DiscardUnknown() {
xxx_messageInfo_PubMsg.DiscardUnknown(m)
}
var xxx_messageInfo_PubMsg proto.InternalMessageInfo
// Used to ACK to publishers
type PubAck struct {
Guid string `protobuf:"bytes,1,opt,name=guid,proto3" json:"guid,omitempty"`
Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
}
func (m *PubAck) Reset() { *m = PubAck{} }
func (m *PubAck) String() string { return proto.CompactTextString(m) }
func (*PubAck) ProtoMessage() {}
func (*PubAck) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{1}
}
func (m *PubAck) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *PubAck) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_PubAck.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *PubAck) XXX_Merge(src proto.Message) {
xxx_messageInfo_PubAck.Merge(m, src)
}
func (m *PubAck) XXX_Size() int {
return m.Size()
}
func (m *PubAck) XXX_DiscardUnknown() {
xxx_messageInfo_PubAck.DiscardUnknown(m)
}
var xxx_messageInfo_PubAck proto.InternalMessageInfo
// Msg struct. Sequence is assigned for global ordering by
// the cluster after the publisher has been acknowledged.
type MsgProto struct {
Sequence uint64 `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
Subject string `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
Reply string `protobuf:"bytes,3,opt,name=reply,proto3" json:"reply,omitempty"`
Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
Timestamp int64 `protobuf:"varint,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
Redelivered bool `protobuf:"varint,6,opt,name=redelivered,proto3" json:"redelivered,omitempty"`
RedeliveryCount uint32 `protobuf:"varint,7,opt,name=redeliveryCount,proto3" json:"redeliveryCount,omitempty"`
CRC32 uint32 `protobuf:"varint,10,opt,name=CRC32,proto3" json:"CRC32,omitempty"`
}
func (m *MsgProto) Reset() { *m = MsgProto{} }
func (m *MsgProto) String() string { return proto.CompactTextString(m) }
func (*MsgProto) ProtoMessage() {}
func (*MsgProto) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{2}
}
func (m *MsgProto) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *MsgProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_MsgProto.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *MsgProto) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgProto.Merge(m, src)
}
func (m *MsgProto) XXX_Size() int {
return m.Size()
}
func (m *MsgProto) XXX_DiscardUnknown() {
xxx_messageInfo_MsgProto.DiscardUnknown(m)
}
var xxx_messageInfo_MsgProto proto.InternalMessageInfo
// Ack will deliver an ack for a delivered msg.
type Ack struct {
Subject string `protobuf:"bytes,1,opt,name=subject,proto3" json:"subject,omitempty"`
Sequence uint64 `protobuf:"varint,2,opt,name=sequence,proto3" json:"sequence,omitempty"`
}
func (m *Ack) Reset() { *m = Ack{} }
func (m *Ack) String() string { return proto.CompactTextString(m) }
func (*Ack) ProtoMessage() {}
func (*Ack) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{3}
}
func (m *Ack) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Ack) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Ack.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Ack) XXX_Merge(src proto.Message) {
xxx_messageInfo_Ack.Merge(m, src)
}
func (m *Ack) XXX_Size() int {
return m.Size()
}
func (m *Ack) XXX_DiscardUnknown() {
xxx_messageInfo_Ack.DiscardUnknown(m)
}
var xxx_messageInfo_Ack proto.InternalMessageInfo
// Connection Request
type ConnectRequest struct {
ClientID string `protobuf:"bytes,1,opt,name=clientID,proto3" json:"clientID,omitempty"`
HeartbeatInbox string `protobuf:"bytes,2,opt,name=heartbeatInbox,proto3" json:"heartbeatInbox,omitempty"`
Protocol int32 `protobuf:"varint,3,opt,name=protocol,proto3" json:"protocol,omitempty"`
ConnID []byte `protobuf:"bytes,4,opt,name=connID,proto3" json:"connID,omitempty"`
PingInterval int32 `protobuf:"varint,5,opt,name=pingInterval,proto3" json:"pingInterval,omitempty"`
PingMaxOut int32 `protobuf:"varint,6,opt,name=pingMaxOut,proto3" json:"pingMaxOut,omitempty"`
}
func (m *ConnectRequest) Reset() { *m = ConnectRequest{} }
func (m *ConnectRequest) String() string { return proto.CompactTextString(m) }
func (*ConnectRequest) ProtoMessage() {}
func (*ConnectRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{4}
}
func (m *ConnectRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ConnectRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ConnectRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ConnectRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ConnectRequest.Merge(m, src)
}
func (m *ConnectRequest) XXX_Size() int {
return m.Size()
}
func (m *ConnectRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ConnectRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ConnectRequest proto.InternalMessageInfo
// Response to a client connect
type ConnectResponse struct {
PubPrefix string `protobuf:"bytes,1,opt,name=pubPrefix,proto3" json:"pubPrefix,omitempty"`
SubRequests string `protobuf:"bytes,2,opt,name=subRequests,proto3" json:"subRequests,omitempty"`
UnsubRequests string `protobuf:"bytes,3,opt,name=unsubRequests,proto3" json:"unsubRequests,omitempty"`
CloseRequests string `protobuf:"bytes,4,opt,name=closeRequests,proto3" json:"closeRequests,omitempty"`
Error string `protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty"`
SubCloseRequests string `protobuf:"bytes,6,opt,name=subCloseRequests,proto3" json:"subCloseRequests,omitempty"`
PingRequests string `protobuf:"bytes,7,opt,name=pingRequests,proto3" json:"pingRequests,omitempty"`
PingInterval int32 `protobuf:"varint,8,opt,name=pingInterval,proto3" json:"pingInterval,omitempty"`
PingMaxOut int32 `protobuf:"varint,9,opt,name=pingMaxOut,proto3" json:"pingMaxOut,omitempty"`
Protocol int32 `protobuf:"varint,10,opt,name=protocol,proto3" json:"protocol,omitempty"`
PublicKey string `protobuf:"bytes,100,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
}
func (m *ConnectResponse) Reset() { *m = ConnectResponse{} }
func (m *ConnectResponse) String() string { return proto.CompactTextString(m) }
func (*ConnectResponse) ProtoMessage() {}
func (*ConnectResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{5}
}
func (m *ConnectResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ConnectResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ConnectResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ConnectResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ConnectResponse.Merge(m, src)
}
func (m *ConnectResponse) XXX_Size() int {
return m.Size()
}
func (m *ConnectResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ConnectResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ConnectResponse proto.InternalMessageInfo
// PING from client to server
type Ping struct {
ConnID []byte `protobuf:"bytes,1,opt,name=connID,proto3" json:"connID,omitempty"`
}
func (m *Ping) Reset() { *m = Ping{} }
func (m *Ping) String() string { return proto.CompactTextString(m) }
func (*Ping) ProtoMessage() {}
func (*Ping) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{6}
}
func (m *Ping) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Ping) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Ping.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Ping) XXX_Merge(src proto.Message) {
xxx_messageInfo_Ping.Merge(m, src)
}
func (m *Ping) XXX_Size() int {
return m.Size()
}
func (m *Ping) XXX_DiscardUnknown() {
xxx_messageInfo_Ping.DiscardUnknown(m)
}
var xxx_messageInfo_Ping proto.InternalMessageInfo
// PING response from the server
type PingResponse struct {
Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
}
func (m *PingResponse) Reset() { *m = PingResponse{} }
func (m *PingResponse) String() string { return proto.CompactTextString(m) }
func (*PingResponse) ProtoMessage() {}
func (*PingResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{7}
}
func (m *PingResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *PingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_PingResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *PingResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PingResponse.Merge(m, src)
}
func (m *PingResponse) XXX_Size() int {
return m.Size()
}
func (m *PingResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PingResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PingResponse proto.InternalMessageInfo
// Protocol for a client to subscribe
type SubscriptionRequest struct {
ClientID string `protobuf:"bytes,1,opt,name=clientID,proto3" json:"clientID,omitempty"`
Subject string `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
QGroup string `protobuf:"bytes,3,opt,name=qGroup,proto3" json:"qGroup,omitempty"`
Inbox string `protobuf:"bytes,4,opt,name=inbox,proto3" json:"inbox,omitempty"`
MaxInFlight int32 `protobuf:"varint,5,opt,name=maxInFlight,proto3" json:"maxInFlight,omitempty"`
AckWaitInSecs int32 `protobuf:"varint,6,opt,name=ackWaitInSecs,proto3" json:"ackWaitInSecs,omitempty"`
DurableName string `protobuf:"bytes,7,opt,name=durableName,proto3" json:"durableName,omitempty"`
StartPosition StartPosition `protobuf:"varint,10,opt,name=startPosition,proto3,enum=pb.StartPosition" json:"startPosition,omitempty"`
StartSequence uint64 `protobuf:"varint,11,opt,name=startSequence,proto3" json:"startSequence,omitempty"`
StartTimeDelta int64 `protobuf:"varint,12,opt,name=startTimeDelta,proto3" json:"startTimeDelta,omitempty"`
}
func (m *SubscriptionRequest) Reset() { *m = SubscriptionRequest{} }
func (m *SubscriptionRequest) String() string { return proto.CompactTextString(m) }
func (*SubscriptionRequest) ProtoMessage() {}
func (*SubscriptionRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{8}
}
func (m *SubscriptionRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *SubscriptionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_SubscriptionRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *SubscriptionRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SubscriptionRequest.Merge(m, src)
}
func (m *SubscriptionRequest) XXX_Size() int {
return m.Size()
}
func (m *SubscriptionRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SubscriptionRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SubscriptionRequest proto.InternalMessageInfo
// Response for SubscriptionRequest and UnsubscribeRequests
type SubscriptionResponse struct {
AckInbox string `protobuf:"bytes,2,opt,name=ackInbox,proto3" json:"ackInbox,omitempty"`
Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
}
func (m *SubscriptionResponse) Reset() { *m = SubscriptionResponse{} }
func (m *SubscriptionResponse) String() string { return proto.CompactTextString(m) }
func (*SubscriptionResponse) ProtoMessage() {}
func (*SubscriptionResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{9}
}
func (m *SubscriptionResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *SubscriptionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_SubscriptionResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *SubscriptionResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SubscriptionResponse.Merge(m, src)
}
func (m *SubscriptionResponse) XXX_Size() int {
return m.Size()
}
func (m *SubscriptionResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SubscriptionResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SubscriptionResponse proto.InternalMessageInfo
// Protocol for a clients to unsubscribe. Will return a SubscriptionResponse
type UnsubscribeRequest struct {
ClientID string `protobuf:"bytes,1,opt,name=clientID,proto3" json:"clientID,omitempty"`
Subject string `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
Inbox string `protobuf:"bytes,3,opt,name=inbox,proto3" json:"inbox,omitempty"`
DurableName string `protobuf:"bytes,4,opt,name=durableName,proto3" json:"durableName,omitempty"`
}
func (m *UnsubscribeRequest) Reset() { *m = UnsubscribeRequest{} }
func (m *UnsubscribeRequest) String() string { return proto.CompactTextString(m) }
func (*UnsubscribeRequest) ProtoMessage() {}
func (*UnsubscribeRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{10}
}
func (m *UnsubscribeRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *UnsubscribeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_UnsubscribeRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *UnsubscribeRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UnsubscribeRequest.Merge(m, src)
}
func (m *UnsubscribeRequest) XXX_Size() int {
return m.Size()
}
func (m *UnsubscribeRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UnsubscribeRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UnsubscribeRequest proto.InternalMessageInfo
// Protocol for a client to close a connection
type CloseRequest struct {
ClientID string `protobuf:"bytes,1,opt,name=clientID,proto3" json:"clientID,omitempty"`
}
func (m *CloseRequest) Reset() { *m = CloseRequest{} }
func (m *CloseRequest) String() string { return proto.CompactTextString(m) }
func (*CloseRequest) ProtoMessage() {}
func (*CloseRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{11}
}
func (m *CloseRequest) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *CloseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_CloseRequest.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *CloseRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CloseRequest.Merge(m, src)
}
func (m *CloseRequest) XXX_Size() int {
return m.Size()
}
func (m *CloseRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CloseRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CloseRequest proto.InternalMessageInfo
// Response for CloseRequest
type CloseResponse struct {
Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
}
func (m *CloseResponse) Reset() { *m = CloseResponse{} }
func (m *CloseResponse) String() string { return proto.CompactTextString(m) }
func (*CloseResponse) ProtoMessage() {}
func (*CloseResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_2bc2336598a3f7e0, []int{12}
}
func (m *CloseResponse) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *CloseResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_CloseResponse.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *CloseResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_CloseResponse.Merge(m, src)
}
func (m *CloseResponse) XXX_Size() int {
return m.Size()
}
func (m *CloseResponse) XXX_DiscardUnknown() {
xxx_messageInfo_CloseResponse.DiscardUnknown(m)
}
var xxx_messageInfo_CloseResponse proto.InternalMessageInfo
func init() {
proto.RegisterEnum("pb.StartPosition", StartPosition_name, StartPosition_value)
proto.RegisterType((*PubMsg)(nil), "pb.PubMsg")
proto.RegisterType((*PubAck)(nil), "pb.PubAck")
proto.RegisterType((*MsgProto)(nil), "pb.MsgProto")
proto.RegisterType((*Ack)(nil), "pb.Ack")
proto.RegisterType((*ConnectRequest)(nil), "pb.ConnectRequest")
proto.RegisterType((*ConnectResponse)(nil), "pb.ConnectResponse")
proto.RegisterType((*Ping)(nil), "pb.Ping")
proto.RegisterType((*PingResponse)(nil), "pb.PingResponse")
proto.RegisterType((*SubscriptionRequest)(nil), "pb.SubscriptionRequest")
proto.RegisterType((*SubscriptionResponse)(nil), "pb.SubscriptionResponse")
proto.RegisterType((*UnsubscribeRequest)(nil), "pb.UnsubscribeRequest")
proto.RegisterType((*CloseRequest)(nil), "pb.CloseRequest")
proto.RegisterType((*CloseResponse)(nil), "pb.CloseResponse")
}
func init() { proto.RegisterFile("protocol.proto", fileDescriptor_2bc2336598a3f7e0) }
var fileDescriptor_2bc2336598a3f7e0 = []byte{
// 850 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0x4f, 0x6f, 0xe3, 0x44,
0x18, 0xc6, 0x33, 0xf9, 0xd7, 0xf4, 0x6d, 0x92, 0xcd, 0x0e, 0xd5, 0xca, 0xaa, 0x56, 0x56, 0x65,
0x2d, 0xa8, 0xaa, 0x44, 0x57, 0xea, 0x0a, 0x38, 0x70, 0x82, 0x54, 0x0b, 0x11, 0x74, 0x37, 0x72,
0x41, 0x5c, 0x19, 0x3b, 0xb3, 0xee, 0x50, 0x67, 0xc6, 0xeb, 0x19, 0x97, 0xf6, 0x08, 0x9f, 0x80,
0x0f, 0xc2, 0x07, 0xd9, 0x03, 0x87, 0x3d, 0x72, 0x84, 0xf6, 0xc6, 0xa7, 0x40, 0xf3, 0xda, 0x71,
0xc6, 0x29, 0x5b, 0x90, 0xb8, 0xf9, 0xf9, 0xe5, 0xf5, 0x64, 0xde, 0xe7, 0x79, 0x5f, 0xc3, 0x38,
0xcb, 0x95, 0x51, 0xb1, 0x4a, 0x8f, 0xf0, 0x81, 0xb6, 0xb3, 0x68, 0xef, 0xc3, 0x44, 0x98, 0xf3,
0x22, 0x3a, 0x8a, 0xd5, 0xf2, 0x69, 0xa2, 0x12, 0xf5, 0x14, 0x7f, 0x8a, 0x8a, 0x57, 0xa8, 0x50,
0xe0, 0x53, 0xf9, 0x4a, 0xf0, 0x2b, 0x81, 0xfe, 0xbc, 0x88, 0x4e, 0x75, 0x42, 0xf7, 0x60, 0x10,
0xa7, 0x82, 0x4b, 0x33, 0x3b, 0xf1, 0xc8, 0x3e, 0x39, 0xd8, 0x0e, 0x6b, 0x4d, 0x29, 0x74, 0x93,
0x42, 0x2c, 0xbc, 0x36, 0x72, 0x7c, 0xa6, 0x1e, 0x6c, 0xe9, 0x22, 0xfa, 0x81, 0xc7, 0xc6, 0xeb,
0x20, 0x5e, 0x49, 0xba, 0x0b, 0xbd, 0x9c, 0x67, 0xe9, 0xb5, 0xd7, 0x45, 0x5e, 0x0a, 0x7b, 0xc6,
0x82, 0x19, 0xe6, 0xf5, 0xf6, 0xc9, 0xc1, 0x30, 0xc4, 0x67, 0xfa, 0x08, 0xfa, 0xb1, 0x92, 0x72,
0x76, 0xe2, 0xf5, 0x91, 0x56, 0xca, 0x72, 0x7d, 0xce, 0x8e, 0x3f, 0xfa, 0xd8, 0x83, 0x92, 0x97,
0x2a, 0x38, 0xc6, 0xdb, 0x7e, 0x16, 0x5f, 0xd4, 0x37, 0x22, 0xce, 0x8d, 0x76, 0xa1, 0xc7, 0xf3,
0x5c, 0xe5, 0xd5, 0x35, 0x4b, 0x11, 0xfc, 0x45, 0x60, 0x70, 0xaa, 0x93, 0x39, 0x5a, 0xb4, 0x07,
0x03, 0xcd, 0x5f, 0x17, 0x5c, 0xc6, 0x1c, 0x5f, 0xed, 0x86, 0xb5, 0x76, 0x1b, 0x6a, 0xbf, 0xa3,
0xa1, 0xce, 0x3f, 0x35, 0xd4, 0x75, 0x1a, 0x7a, 0x0c, 0xdb, 0x46, 0x2c, 0xb9, 0x36, 0x6c, 0x99,
0x61, 0xa7, 0x9d, 0x70, 0x0d, 0xe8, 0x3e, 0xec, 0xe4, 0x7c, 0xc1, 0x53, 0x71, 0xc9, 0x73, 0xbe,
0xc0, 0x9e, 0x07, 0xa1, 0x8b, 0xe8, 0x01, 0x3c, 0xa8, 0xe5, 0xf5, 0x54, 0x15, 0xd2, 0x78, 0x5b,
0xfb, 0xe4, 0x60, 0x14, 0x6e, 0x62, 0x7b, 0xa7, 0x69, 0x38, 0x7d, 0x76, 0x8c, 0x0e, 0x8d, 0xc2,
0x52, 0x04, 0x9f, 0x42, 0xc7, 0xba, 0xe3, 0xb4, 0x42, 0x9a, 0xad, 0xb8, 0x06, 0xb4, 0x9b, 0x06,
0x04, 0xbf, 0x11, 0x18, 0x4f, 0x95, 0x94, 0x3c, 0x36, 0xa1, 0x65, 0xda, 0xdc, 0x3b, 0x14, 0x1f,
0xc0, 0xf8, 0x9c, 0xb3, 0xdc, 0x44, 0x9c, 0x99, 0x99, 0x8c, 0xd4, 0x55, 0x65, 0xdb, 0x06, 0xb5,
0x67, 0xac, 0x06, 0x15, 0x0d, 0xec, 0x85, 0xb5, 0x76, 0x06, 0xa0, 0xdb, 0x18, 0x80, 0x00, 0x86,
0x99, 0x90, 0xc9, 0x4c, 0x1a, 0x9e, 0x5f, 0xb2, 0x14, 0xad, 0xec, 0x85, 0x0d, 0x46, 0x7d, 0x00,
0xab, 0x4f, 0xd9, 0xd5, 0xcb, 0xc2, 0xa0, 0x99, 0xbd, 0xd0, 0x21, 0xc1, 0x4f, 0x1d, 0x78, 0x50,
0xb7, 0xa3, 0x33, 0x25, 0x35, 0xb7, 0xf9, 0x64, 0x45, 0x34, 0xcf, 0xf9, 0x2b, 0x71, 0x55, 0x35,
0xb4, 0x06, 0x36, 0x1f, 0x5d, 0x44, 0x55, 0xef, 0xba, 0x6a, 0xc7, 0x45, 0xf4, 0x09, 0x8c, 0x0a,
0xe9, 0xd6, 0x94, 0x13, 0xd1, 0x84, 0xb6, 0x2a, 0x4e, 0x95, 0xe6, 0x75, 0x55, 0xb9, 0x08, 0x4d,
0xb8, 0x1e, 0xd7, 0x9e, 0x33, 0xae, 0xf4, 0x10, 0x26, 0xba, 0x88, 0xa6, 0x8d, 0xd7, 0xfb, 0x58,
0x70, 0x87, 0xaf, 0x5c, 0xaa, 0xeb, 0xb6, 0xb0, 0xae, 0xc1, 0xee, 0x38, 0x39, 0xf8, 0x57, 0x27,
0xb7, 0x37, 0x9d, 0x6c, 0x24, 0x08, 0x1b, 0x09, 0x96, 0x8e, 0xa6, 0x22, 0xfe, 0x8a, 0x5f, 0x7b,
0x8b, 0xda, 0xd1, 0x12, 0x04, 0x3e, 0x74, 0xe7, 0x42, 0x26, 0x4e, 0xce, 0xc4, 0xcd, 0x39, 0x78,
0x02, 0xc3, 0x39, 0xde, 0xb6, 0xca, 0xa7, 0xf6, 0x84, 0x34, 0x56, 0xb8, 0x0d, 0xef, 0x9d, 0x15,
0x91, 0x8e, 0x73, 0x91, 0x19, 0xa1, 0xe4, 0x7f, 0x99, 0xce, 0x77, 0x6f, 0xf3, 0x23, 0xe8, 0xbf,
0xfe, 0x22, 0x57, 0x45, 0x56, 0x85, 0x57, 0x29, 0xfb, 0xdf, 0x02, 0xc7, 0xb8, 0xfa, 0x6c, 0xa1,
0xb0, 0x33, 0xb1, 0x64, 0x57, 0x33, 0xf9, 0x3c, 0x15, 0xc9, 0xb9, 0xa9, 0x06, 0xd1, 0x45, 0x36,
0x6d, 0x16, 0x5f, 0x7c, 0xc7, 0x84, 0x99, 0xc9, 0x33, 0x1e, 0xeb, 0x6a, 0x14, 0x9b, 0xd0, 0x9e,
0xb3, 0x28, 0x72, 0x16, 0xa5, 0xfc, 0x05, 0x5b, 0xf2, 0x2a, 0x2a, 0x17, 0xd1, 0x4f, 0x60, 0xa4,
0x0d, 0xcb, 0xcd, 0x5c, 0x69, 0x61, 0xbb, 0x44, 0xab, 0xc7, 0xc7, 0x0f, 0x8f, 0xb2, 0xe8, 0xe8,
0xcc, 0xfd, 0x21, 0x6c, 0xd6, 0xd9, 0x0b, 0x20, 0x38, 0x5b, 0x2d, 0xf6, 0x0e, 0x2e, 0x76, 0x13,
0xda, 0x75, 0x45, 0xf0, 0x8d, 0x58, 0xf2, 0x13, 0x9e, 0x1a, 0xe6, 0x0d, 0xf1, 0xfb, 0xb4, 0x41,
0x83, 0x2f, 0x61, 0xb7, 0xe9, 0x75, 0x15, 0xcd, 0x1e, 0x0c, 0x58, 0x7c, 0xe1, 0x2e, 0x7a, 0xad,
0xd7, 0xb1, 0x75, 0xdc, 0xd8, 0x7e, 0x26, 0x40, 0xbf, 0xb5, 0x8b, 0x61, 0x0f, 0x8b, 0xf8, 0xff,
0x4b, 0xad, 0x4e, 0xa7, 0xb3, 0x91, 0x8e, 0xeb, 0x6a, 0xf7, 0x8e, 0xab, 0xc1, 0x21, 0x0c, 0xdd,
0xa5, 0xb9, 0xef, 0xdf, 0x83, 0xf7, 0x61, 0x54, 0xd5, 0xde, 0x37, 0x8e, 0x87, 0xdf, 0xc3, 0xa8,
0x91, 0x07, 0xdd, 0x81, 0xad, 0x17, 0xfc, 0xc7, 0x97, 0x32, 0xbd, 0x9e, 0xb4, 0xe8, 0x04, 0x86,
0x5f, 0x33, 0x6d, 0x42, 0x1e, 0x73, 0x71, 0xc9, 0x17, 0x13, 0x42, 0x29, 0x8c, 0x6b, 0x7b, 0xf1,
0xc5, 0x49, 0x9b, 0x3e, 0x84, 0xd1, 0x2a, 0x99, 0x12, 0x75, 0xe8, 0x36, 0xf4, 0x9e, 0x8b, 0x5c,
0x9b, 0x49, 0xf7, 0xf3, 0xc7, 0x6f, 0xfe, 0xf4, 0x5b, 0x6f, 0x6e, 0x7c, 0xf2, 0xf6, 0xc6, 0x27,
0x7f, 0xdc, 0xf8, 0xe4, 0x97, 0x5b, 0xbf, 0xf5, 0xf6, 0xd6, 0x6f, 0xfd, 0x7e, 0xeb, 0xb7, 0xa2,
0x3e, 0x2e, 0xdf, 0xb3, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x92, 0x8c, 0x71, 0xda, 0x00, 0x08,
0x00, 0x00,
}
func (m *PubMsg) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *PubMsg) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *PubMsg) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Sha256) > 0 {
i -= len(m.Sha256)
copy(dAtA[i:], m.Sha256)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Sha256)))
i--
dAtA[i] = 0x52
}
if len(m.ConnID) > 0 {
i -= len(m.ConnID)
copy(dAtA[i:], m.ConnID)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.ConnID)))
i--
dAtA[i] = 0x32
}
if len(m.Data) > 0 {
i -= len(m.Data)
copy(dAtA[i:], m.Data)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Data)))
i--
dAtA[i] = 0x2a
}
if len(m.Reply) > 0 {
i -= len(m.Reply)
copy(dAtA[i:], m.Reply)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Reply)))
i--
dAtA[i] = 0x22
}
if len(m.Subject) > 0 {
i -= len(m.Subject)
copy(dAtA[i:], m.Subject)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Subject)))
i--
dAtA[i] = 0x1a
}
if len(m.Guid) > 0 {
i -= len(m.Guid)
copy(dAtA[i:], m.Guid)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Guid)))
i--
dAtA[i] = 0x12
}
if len(m.ClientID) > 0 {
i -= len(m.ClientID)
copy(dAtA[i:], m.ClientID)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.ClientID)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *PubAck) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *PubAck) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *PubAck) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Error) > 0 {
i -= len(m.Error)
copy(dAtA[i:], m.Error)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Error)))
i--
dAtA[i] = 0x12
}
if len(m.Guid) > 0 {
i -= len(m.Guid)
copy(dAtA[i:], m.Guid)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Guid)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *MsgProto) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *MsgProto) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *MsgProto) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if m.CRC32 != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.CRC32))
i--
dAtA[i] = 0x50
}
if m.RedeliveryCount != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.RedeliveryCount))
i--
dAtA[i] = 0x38
}
if m.Redelivered {
i--
if m.Redelivered {
dAtA[i] = 1
} else {
dAtA[i] = 0
}
i--
dAtA[i] = 0x30
}
if m.Timestamp != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.Timestamp))
i--
dAtA[i] = 0x28
}
if len(m.Data) > 0 {
i -= len(m.Data)
copy(dAtA[i:], m.Data)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Data)))
i--
dAtA[i] = 0x22
}
if len(m.Reply) > 0 {
i -= len(m.Reply)
copy(dAtA[i:], m.Reply)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Reply)))
i--
dAtA[i] = 0x1a
}
if len(m.Subject) > 0 {
i -= len(m.Subject)
copy(dAtA[i:], m.Subject)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Subject)))
i--
dAtA[i] = 0x12
}
if m.Sequence != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.Sequence))
i--
dAtA[i] = 0x8
}
return len(dAtA) - i, nil
}
func (m *Ack) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *Ack) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *Ack) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if m.Sequence != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.Sequence))
i--
dAtA[i] = 0x10
}
if len(m.Subject) > 0 {
i -= len(m.Subject)
copy(dAtA[i:], m.Subject)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Subject)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *ConnectRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *ConnectRequest) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *ConnectRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if m.PingMaxOut != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.PingMaxOut))
i--
dAtA[i] = 0x30
}
if m.PingInterval != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.PingInterval))
i--
dAtA[i] = 0x28
}
if len(m.ConnID) > 0 {
i -= len(m.ConnID)
copy(dAtA[i:], m.ConnID)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.ConnID)))
i--
dAtA[i] = 0x22
}
if m.Protocol != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.Protocol))
i--
dAtA[i] = 0x18
}
if len(m.HeartbeatInbox) > 0 {
i -= len(m.HeartbeatInbox)
copy(dAtA[i:], m.HeartbeatInbox)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.HeartbeatInbox)))
i--
dAtA[i] = 0x12
}
if len(m.ClientID) > 0 {
i -= len(m.ClientID)
copy(dAtA[i:], m.ClientID)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.ClientID)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *ConnectResponse) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *ConnectResponse) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *ConnectResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.PublicKey) > 0 {
i -= len(m.PublicKey)
copy(dAtA[i:], m.PublicKey)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.PublicKey)))
i--
dAtA[i] = 0x6
i--
dAtA[i] = 0xa2
}
if m.Protocol != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.Protocol))
i--
dAtA[i] = 0x50
}
if m.PingMaxOut != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.PingMaxOut))
i--
dAtA[i] = 0x48
}
if m.PingInterval != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.PingInterval))
i--
dAtA[i] = 0x40
}
if len(m.PingRequests) > 0 {
i -= len(m.PingRequests)
copy(dAtA[i:], m.PingRequests)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.PingRequests)))
i--
dAtA[i] = 0x3a
}
if len(m.SubCloseRequests) > 0 {
i -= len(m.SubCloseRequests)
copy(dAtA[i:], m.SubCloseRequests)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.SubCloseRequests)))
i--
dAtA[i] = 0x32
}
if len(m.Error) > 0 {
i -= len(m.Error)
copy(dAtA[i:], m.Error)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Error)))
i--
dAtA[i] = 0x2a
}
if len(m.CloseRequests) > 0 {
i -= len(m.CloseRequests)
copy(dAtA[i:], m.CloseRequests)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.CloseRequests)))
i--
dAtA[i] = 0x22
}
if len(m.UnsubRequests) > 0 {
i -= len(m.UnsubRequests)
copy(dAtA[i:], m.UnsubRequests)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.UnsubRequests)))
i--
dAtA[i] = 0x1a
}
if len(m.SubRequests) > 0 {
i -= len(m.SubRequests)
copy(dAtA[i:], m.SubRequests)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.SubRequests)))
i--
dAtA[i] = 0x12
}
if len(m.PubPrefix) > 0 {
i -= len(m.PubPrefix)
copy(dAtA[i:], m.PubPrefix)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.PubPrefix)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *Ping) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *Ping) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *Ping) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.ConnID) > 0 {
i -= len(m.ConnID)
copy(dAtA[i:], m.ConnID)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.ConnID)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *PingResponse) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *PingResponse) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *PingResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Error) > 0 {
i -= len(m.Error)
copy(dAtA[i:], m.Error)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Error)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *SubscriptionRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *SubscriptionRequest) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *SubscriptionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if m.StartTimeDelta != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.StartTimeDelta))
i--
dAtA[i] = 0x60
}
if m.StartSequence != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.StartSequence))
i--
dAtA[i] = 0x58
}
if m.StartPosition != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.StartPosition))
i--
dAtA[i] = 0x50
}
if len(m.DurableName) > 0 {
i -= len(m.DurableName)
copy(dAtA[i:], m.DurableName)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.DurableName)))
i--
dAtA[i] = 0x3a
}
if m.AckWaitInSecs != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.AckWaitInSecs))
i--
dAtA[i] = 0x30
}
if m.MaxInFlight != 0 {
i = encodeVarintProtocol(dAtA, i, uint64(m.MaxInFlight))
i--
dAtA[i] = 0x28
}
if len(m.Inbox) > 0 {
i -= len(m.Inbox)
copy(dAtA[i:], m.Inbox)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Inbox)))
i--
dAtA[i] = 0x22
}
if len(m.QGroup) > 0 {
i -= len(m.QGroup)
copy(dAtA[i:], m.QGroup)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.QGroup)))
i--
dAtA[i] = 0x1a
}
if len(m.Subject) > 0 {
i -= len(m.Subject)
copy(dAtA[i:], m.Subject)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Subject)))
i--
dAtA[i] = 0x12
}
if len(m.ClientID) > 0 {
i -= len(m.ClientID)
copy(dAtA[i:], m.ClientID)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.ClientID)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *SubscriptionResponse) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *SubscriptionResponse) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *SubscriptionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Error) > 0 {
i -= len(m.Error)
copy(dAtA[i:], m.Error)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Error)))
i--
dAtA[i] = 0x1a
}
if len(m.AckInbox) > 0 {
i -= len(m.AckInbox)
copy(dAtA[i:], m.AckInbox)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.AckInbox)))
i--
dAtA[i] = 0x12
}
return len(dAtA) - i, nil
}
func (m *UnsubscribeRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *UnsubscribeRequest) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *UnsubscribeRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.DurableName) > 0 {
i -= len(m.DurableName)
copy(dAtA[i:], m.DurableName)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.DurableName)))
i--
dAtA[i] = 0x22
}
if len(m.Inbox) > 0 {
i -= len(m.Inbox)
copy(dAtA[i:], m.Inbox)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Inbox)))
i--
dAtA[i] = 0x1a
}
if len(m.Subject) > 0 {
i -= len(m.Subject)
copy(dAtA[i:], m.Subject)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Subject)))
i--
dAtA[i] = 0x12
}
if len(m.ClientID) > 0 {
i -= len(m.ClientID)
copy(dAtA[i:], m.ClientID)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.ClientID)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *CloseRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *CloseRequest) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *CloseRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.ClientID) > 0 {
i -= len(m.ClientID)
copy(dAtA[i:], m.ClientID)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.ClientID)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func (m *CloseResponse) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *CloseResponse) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *CloseResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Error) > 0 {
i -= len(m.Error)
copy(dAtA[i:], m.Error)
i = encodeVarintProtocol(dAtA, i, uint64(len(m.Error)))
i--
dAtA[i] = 0xa
}
return len(dAtA) - i, nil
}
func encodeVarintProtocol(dAtA []byte, offset int, v uint64) int {
offset -= sovProtocol(v)
base := offset
for v >= 1<<7 {
dAtA[offset] = uint8(v&0x7f | 0x80)
v >>= 7
offset++
}
dAtA[offset] = uint8(v)
return base
}
func (m *PubMsg) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.ClientID)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Guid)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Subject)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Reply)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Data)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.ConnID)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Sha256)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
return n
}
func (m *PubAck) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.Guid)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Error)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
return n
}
func (m *MsgProto) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if m.Sequence != 0 {
n += 1 + sovProtocol(uint64(m.Sequence))
}
l = len(m.Subject)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Reply)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Data)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
if m.Timestamp != 0 {
n += 1 + sovProtocol(uint64(m.Timestamp))
}
if m.Redelivered {
n += 2
}
if m.RedeliveryCount != 0 {
n += 1 + sovProtocol(uint64(m.RedeliveryCount))
}
if m.CRC32 != 0 {
n += 1 + sovProtocol(uint64(m.CRC32))
}
return n
}
func (m *Ack) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.Subject)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
if m.Sequence != 0 {
n += 1 + sovProtocol(uint64(m.Sequence))
}
return n
}
func (m *ConnectRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.ClientID)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.HeartbeatInbox)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
if m.Protocol != 0 {
n += 1 + sovProtocol(uint64(m.Protocol))
}
l = len(m.ConnID)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
if m.PingInterval != 0 {
n += 1 + sovProtocol(uint64(m.PingInterval))
}
if m.PingMaxOut != 0 {
n += 1 + sovProtocol(uint64(m.PingMaxOut))
}
return n
}
func (m *ConnectResponse) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.PubPrefix)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.SubRequests)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.UnsubRequests)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.CloseRequests)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Error)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.SubCloseRequests)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.PingRequests)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
if m.PingInterval != 0 {
n += 1 + sovProtocol(uint64(m.PingInterval))
}
if m.PingMaxOut != 0 {
n += 1 + sovProtocol(uint64(m.PingMaxOut))
}
if m.Protocol != 0 {
n += 1 + sovProtocol(uint64(m.Protocol))
}
l = len(m.PublicKey)
if l > 0 {
n += 2 + l + sovProtocol(uint64(l))
}
return n
}
func (m *Ping) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.ConnID)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
return n
}
func (m *PingResponse) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.Error)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
return n
}
func (m *SubscriptionRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.ClientID)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Subject)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.QGroup)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Inbox)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
if m.MaxInFlight != 0 {
n += 1 + sovProtocol(uint64(m.MaxInFlight))
}
if m.AckWaitInSecs != 0 {
n += 1 + sovProtocol(uint64(m.AckWaitInSecs))
}
l = len(m.DurableName)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
if m.StartPosition != 0 {
n += 1 + sovProtocol(uint64(m.StartPosition))
}
if m.StartSequence != 0 {
n += 1 + sovProtocol(uint64(m.StartSequence))
}
if m.StartTimeDelta != 0 {
n += 1 + sovProtocol(uint64(m.StartTimeDelta))
}
return n
}
func (m *SubscriptionResponse) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.AckInbox)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Error)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
return n
}
func (m *UnsubscribeRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.ClientID)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Subject)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.Inbox)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
l = len(m.DurableName)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
return n
}
func (m *CloseRequest) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.ClientID)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
return n
}
func (m *CloseResponse) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
l = len(m.Error)
if l > 0 {
n += 1 + l + sovProtocol(uint64(l))
}
return n
}
func sovProtocol(x uint64) (n int) {
return (math_bits.Len64(x|1) + 6) / 7
}
func sozProtocol(x uint64) (n int) {
return sovProtocol(uint64((x << 1) ^ uint64((int64(x) >> 63))))
}
func (m *PubMsg) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: PubMsg: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: PubMsg: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ClientID", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ClientID = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Guid", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Guid = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Subject", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Subject = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Reply", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Reply = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
byteLen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + byteLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
if m.Data == nil {
m.Data = []byte{}
}
iNdEx = postIndex
case 6:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ConnID", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
byteLen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + byteLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ConnID = append(m.ConnID[:0], dAtA[iNdEx:postIndex]...)
if m.ConnID == nil {
m.ConnID = []byte{}
}
iNdEx = postIndex
case 10:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Sha256", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
byteLen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + byteLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Sha256 = append(m.Sha256[:0], dAtA[iNdEx:postIndex]...)
if m.Sha256 == nil {
m.Sha256 = []byte{}
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *PubAck) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: PubAck: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: PubAck: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Guid", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Guid = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Error = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *MsgProto) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: MsgProto: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: MsgProto: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Sequence", wireType)
}
m.Sequence = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Sequence |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Subject", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Subject = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Reply", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Reply = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
byteLen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + byteLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
if m.Data == nil {
m.Data = []byte{}
}
iNdEx = postIndex
case 5:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType)
}
m.Timestamp = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Timestamp |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 6:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Redelivered", wireType)
}
var v int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
v |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
m.Redelivered = bool(v != 0)
case 7:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field RedeliveryCount", wireType)
}
m.RedeliveryCount = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.RedeliveryCount |= uint32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 10:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field CRC32", wireType)
}
m.CRC32 = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.CRC32 |= uint32(b&0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *Ack) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: Ack: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: Ack: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Subject", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Subject = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Sequence", wireType)
}
m.Sequence = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Sequence |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ConnectRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: ConnectRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ConnectRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ClientID", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ClientID = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field HeartbeatInbox", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.HeartbeatInbox = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Protocol", wireType)
}
m.Protocol = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Protocol |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ConnID", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
byteLen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + byteLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ConnID = append(m.ConnID[:0], dAtA[iNdEx:postIndex]...)
if m.ConnID == nil {
m.ConnID = []byte{}
}
iNdEx = postIndex
case 5:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field PingInterval", wireType)
}
m.PingInterval = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.PingInterval |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 6:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field PingMaxOut", wireType)
}
m.PingMaxOut = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.PingMaxOut |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ConnectResponse) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: ConnectResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ConnectResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field PubPrefix", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.PubPrefix = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field SubRequests", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.SubRequests = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field UnsubRequests", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.UnsubRequests = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field CloseRequests", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.CloseRequests = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 5:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Error = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 6:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field SubCloseRequests", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.SubCloseRequests = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 7:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field PingRequests", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.PingRequests = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 8:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field PingInterval", wireType)
}
m.PingInterval = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.PingInterval |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 9:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field PingMaxOut", wireType)
}
m.PingMaxOut = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.PingMaxOut |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 10:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Protocol", wireType)
}
m.Protocol = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Protocol |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 100:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field PublicKey", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.PublicKey = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *Ping) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: Ping: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: Ping: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ConnID", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
byteLen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + byteLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ConnID = append(m.ConnID[:0], dAtA[iNdEx:postIndex]...)
if m.ConnID == nil {
m.ConnID = []byte{}
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *PingResponse) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: PingResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: PingResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Error = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *SubscriptionRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: SubscriptionRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: SubscriptionRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ClientID", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ClientID = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Subject", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Subject = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field QGroup", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.QGroup = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Inbox", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Inbox = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 5:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field MaxInFlight", wireType)
}
m.MaxInFlight = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.MaxInFlight |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 6:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field AckWaitInSecs", wireType)
}
m.AckWaitInSecs = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.AckWaitInSecs |= int32(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 7:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field DurableName", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.DurableName = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 10:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field StartPosition", wireType)
}
m.StartPosition = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.StartPosition |= StartPosition(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 11:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field StartSequence", wireType)
}
m.StartSequence = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.StartSequence |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 12:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field StartTimeDelta", wireType)
}
m.StartTimeDelta = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.StartTimeDelta |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *SubscriptionResponse) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: SubscriptionResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: SubscriptionResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field AckInbox", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.AckInbox = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Error = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *UnsubscribeRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: UnsubscribeRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: UnsubscribeRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ClientID", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ClientID = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Subject", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Subject = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Inbox", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Inbox = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field DurableName", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.DurableName = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *CloseRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: CloseRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: CloseRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ClientID", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ClientID = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *CloseResponse) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: CloseResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: CloseResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowProtocol
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthProtocol
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthProtocol
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Error = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipProtocol(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthProtocol
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func skipProtocol(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0
depth := 0
for iNdEx < l {
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowProtocol
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
wireType := int(wire & 0x7)
switch wireType {
case 0:
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowProtocol
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
iNdEx++
if dAtA[iNdEx-1] < 0x80 {
break
}
}
case 1:
iNdEx += 8
case 2:
var length int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return 0, ErrIntOverflowProtocol
}
if iNdEx >= l {
return 0, io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
length |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if length < 0 {
return 0, ErrInvalidLengthProtocol
}
iNdEx += length
case 3:
depth++
case 4:
if depth == 0 {
return 0, ErrUnexpectedEndOfGroupProtocol
}
depth--
case 5:
iNdEx += 4
default:
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
}
if iNdEx < 0 {
return 0, ErrInvalidLengthProtocol
}
if depth == 0 {
return iNdEx, nil
}
}
return 0, io.ErrUnexpectedEOF
}
var (
ErrInvalidLengthProtocol = fmt.Errorf("proto: negative length found during unmarshaling")
ErrIntOverflowProtocol = fmt.Errorf("proto: integer overflow")
ErrUnexpectedEndOfGroupProtocol = fmt.Errorf("proto: unexpected end of group")
)