mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-17 02:31:06 +01:00
409 lines
14 KiB
Go
409 lines
14 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: signalexchange.proto
|
|
|
|
package proto
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto" //nolint
|
|
_ "github.com/golang/protobuf/protoc-gen-go/descriptor"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
// Message type
|
|
type Body_Type int32
|
|
|
|
const (
|
|
Body_OFFER Body_Type = 0
|
|
Body_ANSWER Body_Type = 1
|
|
Body_CANDIDATE Body_Type = 2
|
|
)
|
|
|
|
var Body_Type_name = map[int32]string{
|
|
0: "OFFER",
|
|
1: "ANSWER",
|
|
2: "CANDIDATE",
|
|
}
|
|
|
|
var Body_Type_value = map[string]int32{
|
|
"OFFER": 0,
|
|
"ANSWER": 1,
|
|
"CANDIDATE": 2,
|
|
}
|
|
|
|
func (x Body_Type) String() string {
|
|
return proto.EnumName(Body_Type_name, int32(x))
|
|
}
|
|
|
|
func (Body_Type) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_bf680d70b8e3473f, []int{2, 0}
|
|
}
|
|
|
|
// Used for sending through signal.
|
|
// The body of this message is the Body message encrypted with the Wireguard private key and the remote Peer key
|
|
type EncryptedMessage struct {
|
|
// Wireguard public key
|
|
Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
|
// Wireguard public key of the remote peer to connect to
|
|
RemoteKey string `protobuf:"bytes,3,opt,name=remoteKey,proto3" json:"remoteKey,omitempty"`
|
|
// encrypted message Body
|
|
Body []byte `protobuf:"bytes,4,opt,name=body,proto3" json:"body,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *EncryptedMessage) Reset() { *m = EncryptedMessage{} }
|
|
func (m *EncryptedMessage) String() string { return proto.CompactTextString(m) }
|
|
func (*EncryptedMessage) ProtoMessage() {}
|
|
func (*EncryptedMessage) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_bf680d70b8e3473f, []int{0}
|
|
}
|
|
|
|
func (m *EncryptedMessage) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_EncryptedMessage.Unmarshal(m, b)
|
|
}
|
|
func (m *EncryptedMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_EncryptedMessage.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *EncryptedMessage) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_EncryptedMessage.Merge(m, src)
|
|
}
|
|
func (m *EncryptedMessage) XXX_Size() int {
|
|
return xxx_messageInfo_EncryptedMessage.Size(m)
|
|
}
|
|
func (m *EncryptedMessage) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_EncryptedMessage.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_EncryptedMessage proto.InternalMessageInfo
|
|
|
|
func (m *EncryptedMessage) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *EncryptedMessage) GetRemoteKey() string {
|
|
if m != nil {
|
|
return m.RemoteKey
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *EncryptedMessage) GetBody() []byte {
|
|
if m != nil {
|
|
return m.Body
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// A decrypted representation of the EncryptedMessage. Used locally before/after encryption
|
|
type Message struct {
|
|
// Wireguard public key
|
|
Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
|
// Wireguard public key of the remote peer to connect to
|
|
RemoteKey string `protobuf:"bytes,3,opt,name=remoteKey,proto3" json:"remoteKey,omitempty"`
|
|
Body *Body `protobuf:"bytes,4,opt,name=body,proto3" json:"body,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Message) Reset() { *m = Message{} }
|
|
func (m *Message) String() string { return proto.CompactTextString(m) }
|
|
func (*Message) ProtoMessage() {}
|
|
func (*Message) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_bf680d70b8e3473f, []int{1}
|
|
}
|
|
|
|
func (m *Message) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Message.Unmarshal(m, b)
|
|
}
|
|
func (m *Message) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Message.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Message) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Message.Merge(m, src)
|
|
}
|
|
func (m *Message) XXX_Size() int {
|
|
return xxx_messageInfo_Message.Size(m)
|
|
}
|
|
func (m *Message) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Message.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Message proto.InternalMessageInfo
|
|
|
|
func (m *Message) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Message) GetRemoteKey() string {
|
|
if m != nil {
|
|
return m.RemoteKey
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Message) GetBody() *Body {
|
|
if m != nil {
|
|
return m.Body
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Actual body of the message that can contain credentials (type OFFER/ANSWER) or connection Candidate
|
|
// This part will be encrypted
|
|
type Body struct {
|
|
Type Body_Type `protobuf:"varint,1,opt,name=type,proto3,enum=signalexchange.Body_Type" json:"type,omitempty"`
|
|
Payload string `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Body) Reset() { *m = Body{} }
|
|
func (m *Body) String() string { return proto.CompactTextString(m) }
|
|
func (*Body) ProtoMessage() {}
|
|
func (*Body) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_bf680d70b8e3473f, []int{2}
|
|
}
|
|
|
|
func (m *Body) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Body.Unmarshal(m, b)
|
|
}
|
|
func (m *Body) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Body.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Body) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Body.Merge(m, src)
|
|
}
|
|
func (m *Body) XXX_Size() int {
|
|
return xxx_messageInfo_Body.Size(m)
|
|
}
|
|
func (m *Body) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Body.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Body proto.InternalMessageInfo
|
|
|
|
func (m *Body) GetType() Body_Type {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return Body_OFFER
|
|
}
|
|
|
|
func (m *Body) GetPayload() string {
|
|
if m != nil {
|
|
return m.Payload
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("signalexchange.Body_Type", Body_Type_name, Body_Type_value)
|
|
proto.RegisterType((*EncryptedMessage)(nil), "signalexchange.EncryptedMessage")
|
|
proto.RegisterType((*Message)(nil), "signalexchange.Message")
|
|
proto.RegisterType((*Body)(nil), "signalexchange.Body")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("signalexchange.proto", fileDescriptor_bf680d70b8e3473f) }
|
|
|
|
var fileDescriptor_bf680d70b8e3473f = []byte{
|
|
// 319 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0x4f, 0x4b, 0xfb, 0x40,
|
|
0x10, 0xed, 0xb6, 0xf9, 0xb5, 0x64, 0x7e, 0xb6, 0x84, 0xa1, 0x87, 0x58, 0x3c, 0x84, 0x9c, 0x72,
|
|
0xd0, 0x54, 0xea, 0xd1, 0x53, 0xff, 0xa4, 0x20, 0x6a, 0x85, 0xa4, 0x28, 0x7a, 0x4b, 0x93, 0x31,
|
|
0x16, 0xdb, 0x6c, 0xd8, 0xac, 0xe0, 0x1e, 0xfc, 0x60, 0x7e, 0x3b, 0xe9, 0xb6, 0xa2, 0x06, 0x41,
|
|
0x10, 0x4f, 0x3b, 0xf3, 0xf6, 0xcd, 0x7b, 0x6f, 0x97, 0x81, 0x6e, 0xb9, 0xcc, 0xf2, 0x78, 0x45,
|
|
0xcf, 0xc9, 0x43, 0x9c, 0x67, 0xe4, 0x17, 0x82, 0x4b, 0x8e, 0x9d, 0xaf, 0x68, 0xcf, 0xc9, 0x38,
|
|
0xcf, 0x56, 0xd4, 0xd7, 0xb7, 0x8b, 0xa7, 0xfb, 0x7e, 0x4a, 0x65, 0x22, 0x96, 0x85, 0xe4, 0x62,
|
|
0x3b, 0xe1, 0x5e, 0x83, 0x15, 0xe4, 0x89, 0x50, 0x85, 0xa4, 0xf4, 0x92, 0xca, 0x32, 0xce, 0x08,
|
|
0x2d, 0x68, 0x3c, 0x92, 0xb2, 0xeb, 0x0e, 0xf3, 0xcc, 0x70, 0x53, 0xe2, 0x01, 0x98, 0x82, 0xd6,
|
|
0x5c, 0xd2, 0x39, 0x29, 0xbb, 0xa1, 0xf1, 0x0f, 0x00, 0x11, 0x8c, 0x05, 0x4f, 0x95, 0x6d, 0x38,
|
|
0xcc, 0xdb, 0x0b, 0x75, 0xed, 0x26, 0xd0, 0xfa, 0xad, 0x9c, 0xf7, 0x49, 0xee, 0xff, 0xa0, 0xeb,
|
|
0x57, 0x5e, 0x3a, 0xe2, 0xa9, 0xda, 0x99, 0xbc, 0x80, 0xb1, 0xe9, 0xf0, 0x08, 0x0c, 0xa9, 0x0a,
|
|
0xb2, 0x99, 0xc3, 0xbc, 0xce, 0x60, 0xff, 0xbb, 0x09, 0x7f, 0xae, 0x0a, 0x0a, 0x35, 0x0d, 0x6d,
|
|
0x68, 0x15, 0xb1, 0x5a, 0xf1, 0x38, 0xdd, 0x85, 0x7a, 0x6f, 0xdd, 0x43, 0x30, 0x36, 0x3c, 0x34,
|
|
0xe1, 0xdf, 0xd5, 0x74, 0x1a, 0x84, 0x56, 0x0d, 0x01, 0x9a, 0xc3, 0x59, 0x74, 0x13, 0x84, 0x16,
|
|
0xc3, 0x36, 0x98, 0xe3, 0xe1, 0x6c, 0x72, 0x36, 0x19, 0xce, 0x03, 0xab, 0x3e, 0x78, 0x65, 0xd0,
|
|
0x89, 0xb4, 0x55, 0xb0, 0xb3, 0xc2, 0x0b, 0x30, 0x22, 0xca, 0x53, 0x74, 0xaa, 0x19, 0xaa, 0x9f,
|
|
0xdc, 0xfb, 0x91, 0xe1, 0xd6, 0xf0, 0x16, 0xda, 0x63, 0x9e, 0xe7, 0x94, 0xc8, 0x48, 0x0a, 0x8a,
|
|
0xd7, 0x7f, 0x23, 0xeb, 0xb1, 0x63, 0x36, 0x32, 0xef, 0x5a, 0xfe, 0xe9, 0x76, 0x2d, 0x9a, 0xfa,
|
|
0x38, 0x79, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xb8, 0xb5, 0xbf, 0xeb, 0x53, 0x02, 0x00, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// SignalExchangeClient is the client API for SignalExchange service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type SignalExchangeClient interface {
|
|
// Synchronously connect to the Signal Exchange service offering connection candidates and waiting for connection candidates from the other party (remote peer)
|
|
Send(ctx context.Context, in *EncryptedMessage, opts ...grpc.CallOption) (*EncryptedMessage, error)
|
|
// Connect to the Signal Exchange service offering connection candidates and maintain a channel for receiving candidates from the other party (remote peer)
|
|
ConnectStream(ctx context.Context, opts ...grpc.CallOption) (SignalExchange_ConnectStreamClient, error)
|
|
}
|
|
|
|
type signalExchangeClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewSignalExchangeClient(cc *grpc.ClientConn) SignalExchangeClient {
|
|
return &signalExchangeClient{cc}
|
|
}
|
|
|
|
func (c *signalExchangeClient) Send(ctx context.Context, in *EncryptedMessage, opts ...grpc.CallOption) (*EncryptedMessage, error) {
|
|
out := new(EncryptedMessage)
|
|
err := c.cc.Invoke(ctx, "/signalexchange.SignalExchange/Send", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *signalExchangeClient) ConnectStream(ctx context.Context, opts ...grpc.CallOption) (SignalExchange_ConnectStreamClient, error) {
|
|
stream, err := c.cc.NewStream(ctx, &_SignalExchange_serviceDesc.Streams[0], "/signalexchange.SignalExchange/ConnectStream", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &signalExchangeConnectStreamClient{stream}
|
|
return x, nil
|
|
}
|
|
|
|
type SignalExchange_ConnectStreamClient interface {
|
|
Send(*EncryptedMessage) error
|
|
Recv() (*EncryptedMessage, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type signalExchangeConnectStreamClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *signalExchangeConnectStreamClient) Send(m *EncryptedMessage) error {
|
|
return x.ClientStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *signalExchangeConnectStreamClient) Recv() (*EncryptedMessage, error) {
|
|
m := new(EncryptedMessage)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
// SignalExchangeServer is the server API for SignalExchange service.
|
|
type SignalExchangeServer interface {
|
|
// Synchronously connect to the Signal Exchange service offering connection candidates and waiting for connection candidates from the other party (remote peer)
|
|
Send(context.Context, *EncryptedMessage) (*EncryptedMessage, error)
|
|
// Connect to the Signal Exchange service offering connection candidates and maintain a channel for receiving candidates from the other party (remote peer)
|
|
ConnectStream(SignalExchange_ConnectStreamServer) error
|
|
}
|
|
|
|
// UnimplementedSignalExchangeServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedSignalExchangeServer struct {
|
|
}
|
|
|
|
func (*UnimplementedSignalExchangeServer) Send(ctx context.Context, req *EncryptedMessage) (*EncryptedMessage, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Send not implemented")
|
|
}
|
|
func (*UnimplementedSignalExchangeServer) ConnectStream(srv SignalExchange_ConnectStreamServer) error {
|
|
return status.Errorf(codes.Unimplemented, "method ConnectStream not implemented")
|
|
}
|
|
|
|
func RegisterSignalExchangeServer(s *grpc.Server, srv SignalExchangeServer) {
|
|
s.RegisterService(&_SignalExchange_serviceDesc, srv)
|
|
}
|
|
|
|
func _SignalExchange_Send_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(EncryptedMessage)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(SignalExchangeServer).Send(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/signalexchange.SignalExchange/Send",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SignalExchangeServer).Send(ctx, req.(*EncryptedMessage))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _SignalExchange_ConnectStream_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(SignalExchangeServer).ConnectStream(&signalExchangeConnectStreamServer{stream})
|
|
}
|
|
|
|
type SignalExchange_ConnectStreamServer interface {
|
|
Send(*EncryptedMessage) error
|
|
Recv() (*EncryptedMessage, error)
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type signalExchangeConnectStreamServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *signalExchangeConnectStreamServer) Send(m *EncryptedMessage) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *signalExchangeConnectStreamServer) Recv() (*EncryptedMessage, error) {
|
|
m := new(EncryptedMessage)
|
|
if err := x.ServerStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
var _SignalExchange_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "signalexchange.SignalExchange",
|
|
HandlerType: (*SignalExchangeServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Send",
|
|
Handler: _SignalExchange_Send_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "ConnectStream",
|
|
Handler: _SignalExchange_ConnectStream_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
},
|
|
Metadata: "signalexchange.proto",
|
|
}
|