Files
open-im-server/pkg/proto/rtc/rtc.pb.go
T

302 lines
10 KiB
Go
Raw Normal View History

2022-03-14 18:33:00 +08:00
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: rtc/rtc.proto
2022-03-16 14:59:15 +08:00
package rtc // import "./rtc"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import sdk_ws "Open_IM/pkg/proto/sdk_ws"
2022-03-14 18:33:00 +08:00
import (
2022-03-16 14:59:15 +08:00
context "golang.org/x/net/context"
2022-03-14 18:33:00 +08:00
grpc "google.golang.org/grpc"
)
2022-03-16 14:59:15 +08:00
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
2022-03-14 18:33:00 +08:00
2022-03-16 14:59:15 +08:00
// 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
2022-03-14 18:33:00 +08:00
2022-03-16 14:59:15 +08:00
type CommonResp struct {
ErrCode int32 `protobuf:"varint,1,opt,name=errCode" json:"errCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *CommonResp) Reset() { *m = CommonResp{} }
func (m *CommonResp) String() string { return proto.CompactTextString(m) }
func (*CommonResp) ProtoMessage() {}
func (*CommonResp) Descriptor() ([]byte, []int) {
return fileDescriptor_rtc_058fd4200139f42f, []int{0}
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *CommonResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommonResp.Unmarshal(m, b)
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *CommonResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommonResp.Marshal(b, m, deterministic)
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (dst *CommonResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommonResp.Merge(dst, src)
}
func (m *CommonResp) XXX_Size() int {
return xxx_messageInfo_CommonResp.Size(m)
}
func (m *CommonResp) XXX_DiscardUnknown() {
xxx_messageInfo_CommonResp.DiscardUnknown(m)
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
var xxx_messageInfo_CommonResp proto.InternalMessageInfo
func (m *CommonResp) GetErrCode() int32 {
if m != nil {
return m.ErrCode
2022-03-14 18:33:00 +08:00
}
return 0
}
2022-03-16 14:59:15 +08:00
func (m *CommonResp) GetErrMsg() string {
if m != nil {
return m.ErrMsg
2022-03-14 18:33:00 +08:00
}
return ""
}
type GetJoinTokenReq struct {
2022-03-16 14:59:15 +08:00
ApiKey string `protobuf:"bytes,1,opt,name=apiKey" json:"apiKey,omitempty"`
ApiSecret string `protobuf:"bytes,2,opt,name=apiSecret" json:"apiSecret,omitempty"`
Room string `protobuf:"bytes,3,opt,name=room" json:"room,omitempty"`
Identity string `protobuf:"bytes,4,opt,name=identity" json:"identity,omitempty"`
MetaData *sdk_ws.ParticipantMetaData `protobuf:"bytes,5,opt,name=metaData" json:"metaData,omitempty"`
OperationID string `protobuf:"bytes,6,opt,name=operationID" json:"operationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetJoinTokenReq) Reset() { *m = GetJoinTokenReq{} }
func (m *GetJoinTokenReq) String() string { return proto.CompactTextString(m) }
func (*GetJoinTokenReq) ProtoMessage() {}
func (*GetJoinTokenReq) Descriptor() ([]byte, []int) {
return fileDescriptor_rtc_058fd4200139f42f, []int{1}
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetJoinTokenReq.Unmarshal(m, b)
}
func (m *GetJoinTokenReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetJoinTokenReq.Marshal(b, m, deterministic)
}
func (dst *GetJoinTokenReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinTokenReq.Merge(dst, src)
}
func (m *GetJoinTokenReq) XXX_Size() int {
return xxx_messageInfo_GetJoinTokenReq.Size(m)
}
func (m *GetJoinTokenReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinTokenReq.DiscardUnknown(m)
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
var xxx_messageInfo_GetJoinTokenReq proto.InternalMessageInfo
2022-03-14 18:33:00 +08:00
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenReq) GetApiKey() string {
if m != nil {
return m.ApiKey
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
return ""
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenReq) GetApiSecret() string {
if m != nil {
return m.ApiSecret
2022-03-14 18:33:00 +08:00
}
return ""
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenReq) GetRoom() string {
if m != nil {
return m.Room
2022-03-14 18:33:00 +08:00
}
return ""
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenReq) GetIdentity() string {
if m != nil {
return m.Identity
2022-03-14 18:33:00 +08:00
}
return ""
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenReq) GetMetaData() *sdk_ws.ParticipantMetaData {
if m != nil {
return m.MetaData
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
return nil
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenReq) GetOperationID() string {
if m != nil {
return m.OperationID
2022-03-14 18:33:00 +08:00
}
return ""
}
type GetJoinTokenResp struct {
2022-03-16 14:59:15 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=CommonResp" json:"CommonResp,omitempty"`
Jwt string `protobuf:"bytes,2,opt,name=jwt" json:"jwt,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenResp) Reset() { *m = GetJoinTokenResp{} }
func (m *GetJoinTokenResp) String() string { return proto.CompactTextString(m) }
func (*GetJoinTokenResp) ProtoMessage() {}
func (*GetJoinTokenResp) Descriptor() ([]byte, []int) {
return fileDescriptor_rtc_058fd4200139f42f, []int{2}
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetJoinTokenResp.Unmarshal(m, b)
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetJoinTokenResp.Marshal(b, m, deterministic)
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (dst *GetJoinTokenResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinTokenResp.Merge(dst, src)
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenResp) XXX_Size() int {
return xxx_messageInfo_GetJoinTokenResp.Size(m)
}
func (m *GetJoinTokenResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinTokenResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetJoinTokenResp proto.InternalMessageInfo
2022-03-14 18:33:00 +08:00
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
2022-03-14 18:33:00 +08:00
}
return nil
}
2022-03-16 14:59:15 +08:00
func (m *GetJoinTokenResp) GetJwt() string {
if m != nil {
return m.Jwt
2022-03-14 18:33:00 +08:00
}
return ""
}
2022-03-16 14:59:15 +08:00
func init() {
proto.RegisterType((*CommonResp)(nil), "rtc.CommonResp")
proto.RegisterType((*GetJoinTokenReq)(nil), "rtc.GetJoinTokenReq")
proto.RegisterType((*GetJoinTokenResp)(nil), "rtc.GetJoinTokenResp")
2022-03-14 18:33:00 +08:00
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
2022-03-16 14:59:15 +08:00
var _ grpc.ClientConn
2022-03-14 18:33:00 +08:00
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
2022-03-16 14:59:15 +08:00
const _ = grpc.SupportPackageIsVersion4
// Client API for RtcService service
2022-03-14 18:33:00 +08:00
type RtcServiceClient interface {
GetJoinToken(ctx context.Context, in *GetJoinTokenReq, opts ...grpc.CallOption) (*GetJoinTokenResp, error)
}
type rtcServiceClient struct {
2022-03-16 14:59:15 +08:00
cc *grpc.ClientConn
2022-03-14 18:33:00 +08:00
}
2022-03-16 14:59:15 +08:00
func NewRtcServiceClient(cc *grpc.ClientConn) RtcServiceClient {
2022-03-14 18:33:00 +08:00
return &rtcServiceClient{cc}
}
func (c *rtcServiceClient) GetJoinToken(ctx context.Context, in *GetJoinTokenReq, opts ...grpc.CallOption) (*GetJoinTokenResp, error) {
out := new(GetJoinTokenResp)
2022-03-16 14:59:15 +08:00
err := grpc.Invoke(ctx, "/rtc.RtcService/GetJoinToken", in, out, c.cc, opts...)
2022-03-14 18:33:00 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2022-03-16 14:59:15 +08:00
// Server API for RtcService service
2022-03-14 18:33:00 +08:00
type RtcServiceServer interface {
GetJoinToken(context.Context, *GetJoinTokenReq) (*GetJoinTokenResp, error)
}
func RegisterRtcServiceServer(s *grpc.Server, srv RtcServiceServer) {
s.RegisterService(&_RtcService_serviceDesc, srv)
}
func _RtcService_GetJoinToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetJoinTokenReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(RtcServiceServer).GetJoinToken(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/rtc.RtcService/GetJoinToken",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(RtcServiceServer).GetJoinToken(ctx, req.(*GetJoinTokenReq))
}
return interceptor(ctx, in, info, handler)
}
var _RtcService_serviceDesc = grpc.ServiceDesc{
ServiceName: "rtc.RtcService",
HandlerType: (*RtcServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "GetJoinToken",
Handler: _RtcService_GetJoinToken_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "rtc/rtc.proto",
}
2022-03-16 14:59:15 +08:00
func init() { proto.RegisterFile("rtc/rtc.proto", fileDescriptor_rtc_058fd4200139f42f) }
var fileDescriptor_rtc_058fd4200139f42f = []byte{
// 343 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0x4f, 0x6b, 0xdb, 0x40,
0x10, 0xc5, 0x51, 0xfd, 0xa7, 0xd6, 0xa8, 0xc5, 0x66, 0x69, 0x8b, 0x30, 0x3d, 0xa8, 0x3e, 0x14,
0x9f, 0x24, 0x70, 0x8f, 0x86, 0x1e, 0x6c, 0x43, 0x71, 0x83, 0x49, 0x58, 0x27, 0x97, 0x5c, 0xc4,
0x66, 0x3d, 0x98, 0x8d, 0x91, 0x76, 0x33, 0xbb, 0xd8, 0xf8, 0xc3, 0xe6, 0xbb, 0x04, 0x6d, 0x64,
0x5b, 0x09, 0xb9, 0xcd, 0xfb, 0xed, 0xec, 0x0c, 0xef, 0x0d, 0x7c, 0x25, 0x27, 0x33, 0x72, 0x32,
0x35, 0xa4, 0x9d, 0x66, 0x2d, 0x72, 0x72, 0xf8, 0xeb, 0xda, 0x60, 0x99, 0x2f, 0x57, 0x99, 0xd9,
0x6d, 0x33, 0xcf, 0x33, 0xbb, 0xd9, 0xe5, 0x07, 0x9b, 0x1d, 0xec, 0x6b, 0xdf, 0xe8, 0x2f, 0xc0,
0x5c, 0x17, 0x85, 0x2e, 0x39, 0x5a, 0xc3, 0x62, 0xf8, 0x8c, 0x44, 0x73, 0xbd, 0xc1, 0x38, 0x48,
0x82, 0x71, 0x87, 0x9f, 0x24, 0xfb, 0x01, 0x5d, 0x24, 0x5a, 0xd9, 0x6d, 0xfc, 0x29, 0x09, 0xc6,
0x21, 0xaf, 0xd5, 0xe8, 0x39, 0x80, 0xfe, 0x3f, 0x74, 0xff, 0xb5, 0x2a, 0x6f, 0xf5, 0x0e, 0x4b,
0x8e, 0x4f, 0x55, 0xaf, 0x30, 0xea, 0x0a, 0x8f, 0x7e, 0x48, 0xc8, 0x6b, 0xc5, 0x7e, 0x42, 0x28,
0x8c, 0x5a, 0xa3, 0x24, 0x74, 0xf5, 0x98, 0x0b, 0x60, 0x0c, 0xda, 0xa4, 0x75, 0x11, 0xb7, 0xfc,
0x83, 0xaf, 0xd9, 0x10, 0x7a, 0x6a, 0x83, 0xa5, 0x53, 0xee, 0x18, 0xb7, 0x3d, 0x3f, 0x6b, 0x36,
0x83, 0x5e, 0x81, 0x4e, 0x2c, 0x84, 0x13, 0x71, 0x27, 0x09, 0xc6, 0xd1, 0xe4, 0x77, 0x6a, 0x91,
0xf6, 0x48, 0xb9, 0x30, 0x2a, 0x37, 0x82, 0x44, 0x61, 0xd3, 0x1b, 0x41, 0x4e, 0x49, 0x65, 0x44,
0xe9, 0x56, 0x75, 0x37, 0x3f, 0xff, 0x63, 0x09, 0x44, 0xda, 0x20, 0x09, 0xa7, 0x74, 0xb9, 0x5c,
0xc4, 0x5d, 0xbf, 0xa2, 0x89, 0x46, 0x77, 0x30, 0x78, 0x6b, 0xcf, 0x1a, 0x96, 0x35, 0x33, 0xf3,
0x1e, 0xa3, 0x49, 0x3f, 0xad, 0xb2, 0xbf, 0x60, 0xde, 0x8c, 0x75, 0x00, 0xad, 0xc7, 0xc3, 0xc9,
0x72, 0x55, 0x4e, 0x96, 0x00, 0xdc, 0xc9, 0x35, 0xd2, 0x5e, 0x49, 0x64, 0x53, 0xf8, 0xd2, 0x5c,
0xc2, 0xbe, 0xf9, 0x61, 0xef, 0x62, 0x1d, 0x7e, 0xff, 0x80, 0x5a, 0x33, 0x8b, 0xee, 0xc3, 0xb4,
0x3a, 0xfc, 0x94, 0x9c, 0x7c, 0xe8, 0xfa, 0xab, 0xfe, 0x79, 0x09, 0x00, 0x00, 0xff, 0xff, 0x1a,
0x27, 0x45, 0x90, 0x0e, 0x02, 0x00, 0x00,
}