forked from cwtch.im/cwtch
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
326 lines
12 KiB
326 lines
12 KiB
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: ControlChannel.proto
|
|
|
|
/*
|
|
Package protocol is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
ControlChannel.proto
|
|
cwtch-profile.proto
|
|
group_message.proto
|
|
|
|
It has these top-level messages:
|
|
Packet
|
|
OpenChannel
|
|
ChannelResult
|
|
KeepAlive
|
|
EnableFeatures
|
|
FeaturesEnabled
|
|
CwtchPeerPacket
|
|
CwtchIdentity
|
|
GroupChatInvite
|
|
CwtchServerPacket
|
|
FetchMessage
|
|
GroupMessage
|
|
DecryptedGroupMessage
|
|
*/
|
|
package protocol
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.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.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
type ChannelResult_CommonError int32
|
|
|
|
const (
|
|
ChannelResult_GenericError ChannelResult_CommonError = 0
|
|
ChannelResult_UnknownTypeError ChannelResult_CommonError = 1
|
|
ChannelResult_UnauthorizedError ChannelResult_CommonError = 2
|
|
ChannelResult_BadUsageError ChannelResult_CommonError = 3
|
|
ChannelResult_FailedError ChannelResult_CommonError = 4
|
|
)
|
|
|
|
var ChannelResult_CommonError_name = map[int32]string{
|
|
0: "GenericError",
|
|
1: "UnknownTypeError",
|
|
2: "UnauthorizedError",
|
|
3: "BadUsageError",
|
|
4: "FailedError",
|
|
}
|
|
var ChannelResult_CommonError_value = map[string]int32{
|
|
"GenericError": 0,
|
|
"UnknownTypeError": 1,
|
|
"UnauthorizedError": 2,
|
|
"BadUsageError": 3,
|
|
"FailedError": 4,
|
|
}
|
|
|
|
func (x ChannelResult_CommonError) Enum() *ChannelResult_CommonError {
|
|
p := new(ChannelResult_CommonError)
|
|
*p = x
|
|
return p
|
|
}
|
|
func (x ChannelResult_CommonError) String() string {
|
|
return proto.EnumName(ChannelResult_CommonError_name, int32(x))
|
|
}
|
|
func (x *ChannelResult_CommonError) UnmarshalJSON(data []byte) error {
|
|
value, err := proto.UnmarshalJSONEnum(ChannelResult_CommonError_value, data, "ChannelResult_CommonError")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*x = ChannelResult_CommonError(value)
|
|
return nil
|
|
}
|
|
func (ChannelResult_CommonError) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2, 0} }
|
|
|
|
type Packet struct {
|
|
// Must contain exactly one field
|
|
OpenChannel *OpenChannel `protobuf:"bytes,1,opt,name=open_channel,json=openChannel" json:"open_channel,omitempty"`
|
|
ChannelResult *ChannelResult `protobuf:"bytes,2,opt,name=channel_result,json=channelResult" json:"channel_result,omitempty"`
|
|
KeepAlive *KeepAlive `protobuf:"bytes,3,opt,name=keep_alive,json=keepAlive" json:"keep_alive,omitempty"`
|
|
EnableFeatures *EnableFeatures `protobuf:"bytes,4,opt,name=enable_features,json=enableFeatures" json:"enable_features,omitempty"`
|
|
FeaturesEnabled *FeaturesEnabled `protobuf:"bytes,5,opt,name=features_enabled,json=featuresEnabled" json:"features_enabled,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *Packet) Reset() { *m = Packet{} }
|
|
func (m *Packet) String() string { return proto.CompactTextString(m) }
|
|
func (*Packet) ProtoMessage() {}
|
|
func (*Packet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *Packet) GetOpenChannel() *OpenChannel {
|
|
if m != nil {
|
|
return m.OpenChannel
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Packet) GetChannelResult() *ChannelResult {
|
|
if m != nil {
|
|
return m.ChannelResult
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Packet) GetKeepAlive() *KeepAlive {
|
|
if m != nil {
|
|
return m.KeepAlive
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Packet) GetEnableFeatures() *EnableFeatures {
|
|
if m != nil {
|
|
return m.EnableFeatures
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Packet) GetFeaturesEnabled() *FeaturesEnabled {
|
|
if m != nil {
|
|
return m.FeaturesEnabled
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type OpenChannel struct {
|
|
ChannelIdentifier *int32 `protobuf:"varint,1,req,name=channel_identifier,json=channelIdentifier" json:"channel_identifier,omitempty"`
|
|
ChannelType *string `protobuf:"bytes,2,req,name=channel_type,json=channelType" json:"channel_type,omitempty"`
|
|
proto.XXX_InternalExtensions `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *OpenChannel) Reset() { *m = OpenChannel{} }
|
|
func (m *OpenChannel) String() string { return proto.CompactTextString(m) }
|
|
func (*OpenChannel) ProtoMessage() {}
|
|
func (*OpenChannel) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
var extRange_OpenChannel = []proto.ExtensionRange{
|
|
{Start: 100, End: 536870911},
|
|
}
|
|
|
|
func (*OpenChannel) ExtensionRangeArray() []proto.ExtensionRange {
|
|
return extRange_OpenChannel
|
|
}
|
|
|
|
func (m *OpenChannel) GetChannelIdentifier() int32 {
|
|
if m != nil && m.ChannelIdentifier != nil {
|
|
return *m.ChannelIdentifier
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OpenChannel) GetChannelType() string {
|
|
if m != nil && m.ChannelType != nil {
|
|
return *m.ChannelType
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ChannelResult struct {
|
|
ChannelIdentifier *int32 `protobuf:"varint,1,req,name=channel_identifier,json=channelIdentifier" json:"channel_identifier,omitempty"`
|
|
Opened *bool `protobuf:"varint,2,req,name=opened" json:"opened,omitempty"`
|
|
CommonError *ChannelResult_CommonError `protobuf:"varint,3,opt,name=common_error,json=commonError,enum=protocol.ChannelResult_CommonError" json:"common_error,omitempty"`
|
|
proto.XXX_InternalExtensions `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *ChannelResult) Reset() { *m = ChannelResult{} }
|
|
func (m *ChannelResult) String() string { return proto.CompactTextString(m) }
|
|
func (*ChannelResult) ProtoMessage() {}
|
|
func (*ChannelResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
var extRange_ChannelResult = []proto.ExtensionRange{
|
|
{Start: 100, End: 536870911},
|
|
}
|
|
|
|
func (*ChannelResult) ExtensionRangeArray() []proto.ExtensionRange {
|
|
return extRange_ChannelResult
|
|
}
|
|
|
|
func (m *ChannelResult) GetChannelIdentifier() int32 {
|
|
if m != nil && m.ChannelIdentifier != nil {
|
|
return *m.ChannelIdentifier
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ChannelResult) GetOpened() bool {
|
|
if m != nil && m.Opened != nil {
|
|
return *m.Opened
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *ChannelResult) GetCommonError() ChannelResult_CommonError {
|
|
if m != nil && m.CommonError != nil {
|
|
return *m.CommonError
|
|
}
|
|
return ChannelResult_GenericError
|
|
}
|
|
|
|
type KeepAlive struct {
|
|
ResponseRequested *bool `protobuf:"varint,1,req,name=response_requested,json=responseRequested" json:"response_requested,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *KeepAlive) Reset() { *m = KeepAlive{} }
|
|
func (m *KeepAlive) String() string { return proto.CompactTextString(m) }
|
|
func (*KeepAlive) ProtoMessage() {}
|
|
func (*KeepAlive) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
func (m *KeepAlive) GetResponseRequested() bool {
|
|
if m != nil && m.ResponseRequested != nil {
|
|
return *m.ResponseRequested
|
|
}
|
|
return false
|
|
}
|
|
|
|
type EnableFeatures struct {
|
|
Feature []string `protobuf:"bytes,1,rep,name=feature" json:"feature,omitempty"`
|
|
proto.XXX_InternalExtensions `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *EnableFeatures) Reset() { *m = EnableFeatures{} }
|
|
func (m *EnableFeatures) String() string { return proto.CompactTextString(m) }
|
|
func (*EnableFeatures) ProtoMessage() {}
|
|
func (*EnableFeatures) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
var extRange_EnableFeatures = []proto.ExtensionRange{
|
|
{Start: 100, End: 536870911},
|
|
}
|
|
|
|
func (*EnableFeatures) ExtensionRangeArray() []proto.ExtensionRange {
|
|
return extRange_EnableFeatures
|
|
}
|
|
|
|
func (m *EnableFeatures) GetFeature() []string {
|
|
if m != nil {
|
|
return m.Feature
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type FeaturesEnabled struct {
|
|
Feature []string `protobuf:"bytes,1,rep,name=feature" json:"feature,omitempty"`
|
|
proto.XXX_InternalExtensions `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *FeaturesEnabled) Reset() { *m = FeaturesEnabled{} }
|
|
func (m *FeaturesEnabled) String() string { return proto.CompactTextString(m) }
|
|
func (*FeaturesEnabled) ProtoMessage() {}
|
|
func (*FeaturesEnabled) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
var extRange_FeaturesEnabled = []proto.ExtensionRange{
|
|
{Start: 100, End: 536870911},
|
|
}
|
|
|
|
func (*FeaturesEnabled) ExtensionRangeArray() []proto.ExtensionRange {
|
|
return extRange_FeaturesEnabled
|
|
}
|
|
|
|
func (m *FeaturesEnabled) GetFeature() []string {
|
|
if m != nil {
|
|
return m.Feature
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Packet)(nil), "protocol.Packet")
|
|
proto.RegisterType((*OpenChannel)(nil), "protocol.OpenChannel")
|
|
proto.RegisterType((*ChannelResult)(nil), "protocol.ChannelResult")
|
|
proto.RegisterType((*KeepAlive)(nil), "protocol.KeepAlive")
|
|
proto.RegisterType((*EnableFeatures)(nil), "protocol.EnableFeatures")
|
|
proto.RegisterType((*FeaturesEnabled)(nil), "protocol.FeaturesEnabled")
|
|
proto.RegisterEnum("protocol.ChannelResult_CommonError", ChannelResult_CommonError_name, ChannelResult_CommonError_value)
|
|
}
|
|
|
|
func init() { proto.RegisterFile("ControlChannel.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 461 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x4d, 0x8f, 0xd3, 0x30,
|
|
0x10, 0x25, 0xe9, 0xee, 0x92, 0x4e, 0xfa, 0x91, 0x9a, 0x5d, 0x30, 0xb7, 0x12, 0x2e, 0x15, 0x12,
|
|
0x3d, 0x54, 0x20, 0x21, 0x0e, 0x48, 0x4b, 0xd9, 0x22, 0xc4, 0x01, 0x64, 0xd1, 0x73, 0x64, 0x92,
|
|
0x29, 0x1b, 0x35, 0x6b, 0x1b, 0xc7, 0x05, 0x2d, 0xa7, 0xfe, 0x0e, 0xfe, 0x0c, 0x7f, 0x0d, 0xc5,
|
|
0x89, 0x9b, 0x14, 0x09, 0x09, 0x4e, 0xc9, 0x9b, 0xf7, 0xde, 0x8c, 0xfc, 0x66, 0xe0, 0x7c, 0x29,
|
|
0x85, 0xd1, 0xb2, 0x58, 0x5e, 0x73, 0x21, 0xb0, 0x98, 0x2b, 0x2d, 0x8d, 0x24, 0x81, 0xfd, 0xa4,
|
|
0xb2, 0x88, 0x7f, 0xf9, 0x70, 0xf6, 0x91, 0xa7, 0x5b, 0x34, 0xe4, 0x05, 0x0c, 0xa4, 0x42, 0x91,
|
|
0xa4, 0xb5, 0x94, 0x7a, 0x53, 0x6f, 0x16, 0x2e, 0x2e, 0xe6, 0x4e, 0x3b, 0xff, 0xa0, 0x50, 0x34,
|
|
0x7d, 0x58, 0x28, 0x5b, 0x40, 0x5e, 0xc1, 0xa8, 0x31, 0x25, 0x1a, 0xcb, 0x5d, 0x61, 0xa8, 0x6f,
|
|
0xbd, 0x0f, 0x5a, 0xaf, 0xf3, 0x59, 0x9a, 0x0d, 0xd3, 0x2e, 0x24, 0x0b, 0x80, 0x2d, 0xa2, 0x4a,
|
|
0x78, 0x91, 0x7f, 0x43, 0xda, 0xb3, 0xde, 0x7b, 0xad, 0xf7, 0x3d, 0xa2, 0xba, 0xac, 0x28, 0xd6,
|
|
0xdf, 0xba, 0x5f, 0x72, 0x09, 0x63, 0x14, 0xfc, 0x73, 0x81, 0xc9, 0x06, 0xb9, 0xd9, 0x69, 0x2c,
|
|
0xe9, 0x89, 0x35, 0xd2, 0xd6, 0x78, 0x65, 0x05, 0xab, 0x86, 0x67, 0x23, 0x3c, 0xc2, 0xe4, 0x0d,
|
|
0x44, 0xce, 0x9b, 0xd4, 0x54, 0x46, 0x4f, 0x6d, 0x8f, 0x87, 0x6d, 0x0f, 0xa7, 0xae, 0x7b, 0x65,
|
|
0x6c, 0xbc, 0x39, 0x2e, 0xc4, 0x39, 0x84, 0x9d, 0x60, 0xc8, 0x53, 0x20, 0x2e, 0x8b, 0x3c, 0x43,
|
|
0x61, 0xf2, 0x4d, 0x8e, 0x9a, 0x7a, 0x53, 0x7f, 0x76, 0xca, 0x26, 0x0d, 0xf3, 0xee, 0x40, 0x90,
|
|
0x47, 0x30, 0x70, 0x72, 0x73, 0xab, 0x90, 0xfa, 0x53, 0x7f, 0xd6, 0x67, 0x61, 0x53, 0xfb, 0x74,
|
|
0xab, 0xf0, 0x49, 0x10, 0x64, 0xd1, 0x7e, 0xbf, 0xdf, 0xfb, 0xf1, 0x4f, 0x1f, 0x86, 0x47, 0x41,
|
|
0xfe, 0xef, 0xb4, 0xfb, 0x70, 0x56, 0xed, 0x0d, 0x33, 0x3b, 0x27, 0x60, 0x0d, 0x22, 0x2b, 0x18,
|
|
0xa4, 0xf2, 0xe6, 0x46, 0x8a, 0x04, 0xb5, 0x96, 0xda, 0xae, 0x60, 0xb4, 0x78, 0xfc, 0x97, 0xf5,
|
|
0xcd, 0x97, 0x56, 0x7b, 0x55, 0x49, 0x59, 0x98, 0xb6, 0x20, 0x56, 0x10, 0x76, 0x38, 0x12, 0xc1,
|
|
0xe0, 0x2d, 0x0a, 0xd4, 0x79, 0x6a, 0x71, 0x74, 0x87, 0x9c, 0x43, 0xb4, 0x16, 0x5b, 0x21, 0xbf,
|
|
0x8b, 0xea, 0x69, 0x75, 0xd5, 0x23, 0x17, 0x30, 0x59, 0x0b, 0xbe, 0x33, 0xd7, 0x52, 0xe7, 0x3f,
|
|
0x30, 0xab, 0xcb, 0x3e, 0x99, 0xc0, 0xf0, 0x35, 0xcf, 0xd6, 0x25, 0xff, 0xd2, 0x28, 0x7b, 0x64,
|
|
0x0c, 0xe1, 0x8a, 0xe7, 0x85, 0xd3, 0x9c, 0x74, 0xc2, 0x79, 0x09, 0xfd, 0xc3, 0xa1, 0x54, 0xb9,
|
|
0x68, 0x2c, 0x95, 0x14, 0x25, 0x26, 0x1a, 0xbf, 0xee, 0xb0, 0x34, 0x98, 0xd9, 0x5c, 0x02, 0x36,
|
|
0x71, 0x0c, 0x73, 0x44, 0xfc, 0x0c, 0x46, 0xc7, 0xb7, 0x42, 0x28, 0xdc, 0x6d, 0x16, 0x4d, 0xbd,
|
|
0x69, 0x6f, 0xd6, 0x67, 0x0e, 0x76, 0x26, 0x3e, 0x87, 0xf1, 0x1f, 0xd7, 0xf1, 0x2f, 0xb6, 0xdf,
|
|
0x01, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x32, 0x16, 0x1e, 0x93, 0x03, 0x00, 0x00,
|
|
}
|