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

2382 lines
79 KiB
Go
Raw Normal View History

2022-03-17 10:33:20 +08:00
// Code generated by protoc-gen-go. DO NOT EDIT.
2022-06-13 11:53:12 +08:00
// source: rtc/rtc.proto
2022-03-17 10:33:20 +08:00
2022-06-13 11:53:12 +08:00
package rtc // import "./rtc"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
2022-03-17 10:33:20 +08:00
import (
2022-06-13 11:53:12 +08:00
context "golang.org/x/net/context"
2022-03-17 10:33:20 +08:00
grpc "google.golang.org/grpc"
)
2022-06-13 11:53:12 +08:00
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
2022-03-17 10:33:20 +08:00
2022-06-13 11:53:12 +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-17 10:33:20 +08:00
2022-06-13 11:53:12 +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-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +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) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{0}
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *CommonResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommonResp.Unmarshal(m, b)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *CommonResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommonResp.Marshal(b, m, deterministic)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +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)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *CommonResp) XXX_DiscardUnknown() {
xxx_messageInfo_CommonResp.DiscardUnknown(m)
}
var xxx_messageInfo_CommonResp proto.InternalMessageInfo
2022-03-17 10:33:20 +08:00
2022-06-13 11:53:12 +08:00
func (m *CommonResp) GetErrCode() int32 {
if m != nil {
return m.ErrCode
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *CommonResp) GetErrMsg() string {
if m != nil {
return m.ErrMsg
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-04-05 10:27:34 +08:00
type MsgData struct {
2022-06-13 11:53:12 +08:00
SendID string `protobuf:"bytes,1,opt,name=sendID" json:"sendID,omitempty"`
RecvID string `protobuf:"bytes,2,opt,name=recvID" json:"recvID,omitempty"`
GroupID string `protobuf:"bytes,3,opt,name=groupID" json:"groupID,omitempty"`
ClientMsgID string `protobuf:"bytes,4,opt,name=clientMsgID" json:"clientMsgID,omitempty"`
ServerMsgID string `protobuf:"bytes,5,opt,name=serverMsgID" json:"serverMsgID,omitempty"`
SenderPlatformID int32 `protobuf:"varint,6,opt,name=senderPlatformID" json:"senderPlatformID,omitempty"`
SenderNickname string `protobuf:"bytes,7,opt,name=senderNickname" json:"senderNickname,omitempty"`
SenderFaceURL string `protobuf:"bytes,8,opt,name=senderFaceURL" json:"senderFaceURL,omitempty"`
SessionType int32 `protobuf:"varint,9,opt,name=sessionType" json:"sessionType,omitempty"`
MsgFrom int32 `protobuf:"varint,10,opt,name=msgFrom" json:"msgFrom,omitempty"`
ContentType int32 `protobuf:"varint,11,opt,name=contentType" json:"contentType,omitempty"`
Content []byte `protobuf:"bytes,12,opt,name=content,proto3" json:"content,omitempty"`
Seq uint32 `protobuf:"varint,14,opt,name=seq" json:"seq,omitempty"`
SendTime int64 `protobuf:"varint,15,opt,name=sendTime" json:"sendTime,omitempty"`
CreateTime int64 `protobuf:"varint,16,opt,name=createTime" json:"createTime,omitempty"`
Status int32 `protobuf:"varint,17,opt,name=status" json:"status,omitempty"`
Options map[string]bool `protobuf:"bytes,18,rep,name=options" json:"options,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,19,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *MsgData) Reset() { *m = MsgData{} }
func (m *MsgData) String() string { return proto.CompactTextString(m) }
func (*MsgData) ProtoMessage() {}
2022-04-05 10:27:34 +08:00
func (*MsgData) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{1}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MsgData.Unmarshal(m, b)
}
func (m *MsgData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_MsgData.Marshal(b, m, deterministic)
}
func (dst *MsgData) XXX_Merge(src proto.Message) {
xxx_messageInfo_MsgData.Merge(dst, src)
}
func (m *MsgData) XXX_Size() int {
return xxx_messageInfo_MsgData.Size(m)
}
func (m *MsgData) XXX_DiscardUnknown() {
xxx_messageInfo_MsgData.DiscardUnknown(m)
}
var xxx_messageInfo_MsgData proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetSendID() string {
if m != nil {
return m.SendID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetRecvID() string {
if m != nil {
return m.RecvID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetGroupID() string {
if m != nil {
return m.GroupID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetClientMsgID() string {
if m != nil {
return m.ClientMsgID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetServerMsgID() string {
if m != nil {
return m.ServerMsgID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetSenderPlatformID() int32 {
if m != nil {
return m.SenderPlatformID
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetSenderNickname() string {
if m != nil {
return m.SenderNickname
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetSenderFaceURL() string {
if m != nil {
return m.SenderFaceURL
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetSessionType() int32 {
if m != nil {
return m.SessionType
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetMsgFrom() int32 {
if m != nil {
return m.MsgFrom
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetContentType() int32 {
if m != nil {
return m.ContentType
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetContent() []byte {
if m != nil {
return m.Content
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetSeq() uint32 {
if m != nil {
return m.Seq
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetSendTime() int64 {
if m != nil {
return m.SendTime
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetCreateTime() int64 {
if m != nil {
return m.CreateTime
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetStatus() int32 {
if m != nil {
return m.Status
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetOptions() map[string]bool {
if m != nil {
return m.Options
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *MsgData) GetOfflinePushInfo() *OfflinePushInfo {
if m != nil {
return m.OfflinePushInfo
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-03-17 10:33:20 +08:00
type GroupInfo struct {
2022-06-13 11:53:12 +08:00
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
GroupName string `protobuf:"bytes,2,opt,name=groupName" json:"groupName,omitempty"`
Notification string `protobuf:"bytes,3,opt,name=notification" json:"notification,omitempty"`
Introduction string `protobuf:"bytes,4,opt,name=introduction" json:"introduction,omitempty"`
FaceURL string `protobuf:"bytes,5,opt,name=faceURL" json:"faceURL,omitempty"`
OwnerUserID string `protobuf:"bytes,6,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
CreateTime uint32 `protobuf:"varint,7,opt,name=createTime" json:"createTime,omitempty"`
MemberCount uint32 `protobuf:"varint,8,opt,name=memberCount" json:"memberCount,omitempty"`
Ex string `protobuf:"bytes,9,opt,name=ex" json:"ex,omitempty"`
Status int32 `protobuf:"varint,10,opt,name=status" json:"status,omitempty"`
CreatorUserID string `protobuf:"bytes,11,opt,name=creatorUserID" json:"creatorUserID,omitempty"`
GroupType int32 `protobuf:"varint,12,opt,name=groupType" json:"groupType,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupInfo) Reset() { *m = GroupInfo{} }
func (m *GroupInfo) String() string { return proto.CompactTextString(m) }
func (*GroupInfo) ProtoMessage() {}
func (*GroupInfo) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{2}
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupInfo.Unmarshal(m, b)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupInfo.Marshal(b, m, deterministic)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *GroupInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupInfo.Merge(dst, src)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) XXX_Size() int {
return xxx_messageInfo_GroupInfo.Size(m)
}
func (m *GroupInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupInfo.DiscardUnknown(m)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_GroupInfo proto.InternalMessageInfo
func (m *GroupInfo) GetGroupID() string {
if m != nil {
return m.GroupID
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetGroupName() string {
if m != nil {
return m.GroupName
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetNotification() string {
if m != nil {
return m.Notification
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetIntroduction() string {
if m != nil {
return m.Introduction
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetFaceURL() string {
if m != nil {
return m.FaceURL
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetOwnerUserID() string {
if m != nil {
return m.OwnerUserID
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetCreateTime() uint32 {
if m != nil {
return m.CreateTime
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetMemberCount() uint32 {
if m != nil {
return m.MemberCount
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetEx() string {
if m != nil {
return m.Ex
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetStatus() int32 {
if m != nil {
return m.Status
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetCreatorUserID() string {
if m != nil {
return m.CreatorUserID
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupInfo) GetGroupType() int32 {
if m != nil {
return m.GroupType
2022-03-17 10:33:20 +08:00
}
return 0
}
type GroupMemberFullInfo struct {
2022-06-13 11:53:12 +08:00
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
RoleLevel int32 `protobuf:"varint,3,opt,name=roleLevel" json:"roleLevel,omitempty"`
JoinTime int32 `protobuf:"varint,4,opt,name=joinTime" json:"joinTime,omitempty"`
Nickname string `protobuf:"bytes,5,opt,name=nickname" json:"nickname,omitempty"`
FaceURL string `protobuf:"bytes,6,opt,name=faceURL" json:"faceURL,omitempty"`
AppMangerLevel int32 `protobuf:"varint,7,opt,name=appMangerLevel" json:"appMangerLevel,omitempty"`
JoinSource int32 `protobuf:"varint,8,opt,name=joinSource" json:"joinSource,omitempty"`
OperatorUserID string `protobuf:"bytes,9,opt,name=operatorUserID" json:"operatorUserID,omitempty"`
Ex string `protobuf:"bytes,10,opt,name=ex" json:"ex,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupMemberFullInfo) Reset() { *m = GroupMemberFullInfo{} }
func (m *GroupMemberFullInfo) String() string { return proto.CompactTextString(m) }
func (*GroupMemberFullInfo) ProtoMessage() {}
func (*GroupMemberFullInfo) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{3}
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupMemberFullInfo.Unmarshal(m, b)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupMemberFullInfo.Marshal(b, m, deterministic)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *GroupMemberFullInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupMemberFullInfo.Merge(dst, src)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) XXX_Size() int {
return xxx_messageInfo_GroupMemberFullInfo.Size(m)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) XXX_DiscardUnknown() {
xxx_messageInfo_GroupMemberFullInfo.DiscardUnknown(m)
}
var xxx_messageInfo_GroupMemberFullInfo proto.InternalMessageInfo
2022-03-17 10:33:20 +08:00
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetGroupID() string {
if m != nil {
return m.GroupID
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetUserID() string {
if m != nil {
return m.UserID
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetRoleLevel() int32 {
if m != nil {
return m.RoleLevel
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetJoinTime() int32 {
if m != nil {
return m.JoinTime
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetNickname() string {
if m != nil {
return m.Nickname
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetFaceURL() string {
if m != nil {
return m.FaceURL
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetAppMangerLevel() int32 {
if m != nil {
return m.AppMangerLevel
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetJoinSource() int32 {
if m != nil {
return m.JoinSource
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetOperatorUserID() string {
if m != nil {
return m.OperatorUserID
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GroupMemberFullInfo) GetEx() string {
if m != nil {
return m.Ex
2022-03-17 10:33:20 +08:00
}
return ""
}
type ParticipantMetaData struct {
2022-06-13 11:53:12 +08:00
GroupInfo *GroupInfo `protobuf:"bytes,1,opt,name=groupInfo" json:"groupInfo,omitempty"`
GroupMemberInfo *GroupMemberFullInfo `protobuf:"bytes,2,opt,name=groupMemberInfo" json:"groupMemberInfo,omitempty"`
UserInfo *PublicUserInfo `protobuf:"bytes,3,opt,name=userInfo" json:"userInfo,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *ParticipantMetaData) Reset() { *m = ParticipantMetaData{} }
func (m *ParticipantMetaData) String() string { return proto.CompactTextString(m) }
func (*ParticipantMetaData) ProtoMessage() {}
func (*ParticipantMetaData) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{4}
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *ParticipantMetaData) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ParticipantMetaData.Unmarshal(m, b)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *ParticipantMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ParticipantMetaData.Marshal(b, m, deterministic)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *ParticipantMetaData) XXX_Merge(src proto.Message) {
xxx_messageInfo_ParticipantMetaData.Merge(dst, src)
}
func (m *ParticipantMetaData) XXX_Size() int {
return xxx_messageInfo_ParticipantMetaData.Size(m)
}
func (m *ParticipantMetaData) XXX_DiscardUnknown() {
xxx_messageInfo_ParticipantMetaData.DiscardUnknown(m)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_ParticipantMetaData proto.InternalMessageInfo
func (m *ParticipantMetaData) GetGroupInfo() *GroupInfo {
if m != nil {
return m.GroupInfo
2022-03-17 10:33:20 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *ParticipantMetaData) GetGroupMemberInfo() *GroupMemberFullInfo {
if m != nil {
return m.GroupMemberInfo
2022-03-17 10:33:20 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *ParticipantMetaData) GetUserInfo() *PublicUserInfo {
if m != nil {
return m.UserInfo
2022-03-17 10:33:20 +08:00
}
return nil
}
type PublicUserInfo struct {
2022-06-13 11:53:12 +08:00
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
Nickname string `protobuf:"bytes,2,opt,name=nickname" json:"nickname,omitempty"`
FaceURL string `protobuf:"bytes,3,opt,name=faceURL" json:"faceURL,omitempty"`
Gender int32 `protobuf:"varint,4,opt,name=gender" json:"gender,omitempty"`
Ex string `protobuf:"bytes,5,opt,name=ex" json:"ex,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PublicUserInfo) Reset() { *m = PublicUserInfo{} }
func (m *PublicUserInfo) String() string { return proto.CompactTextString(m) }
func (*PublicUserInfo) ProtoMessage() {}
func (*PublicUserInfo) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{5}
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *PublicUserInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PublicUserInfo.Unmarshal(m, b)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *PublicUserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PublicUserInfo.Marshal(b, m, deterministic)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *PublicUserInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_PublicUserInfo.Merge(dst, src)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *PublicUserInfo) XXX_Size() int {
return xxx_messageInfo_PublicUserInfo.Size(m)
}
func (m *PublicUserInfo) XXX_DiscardUnknown() {
xxx_messageInfo_PublicUserInfo.DiscardUnknown(m)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_PublicUserInfo proto.InternalMessageInfo
func (m *PublicUserInfo) GetUserID() string {
if m != nil {
return m.UserID
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *PublicUserInfo) GetNickname() string {
if m != nil {
return m.Nickname
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *PublicUserInfo) GetFaceURL() string {
if m != nil {
return m.FaceURL
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *PublicUserInfo) GetGender() int32 {
if m != nil {
return m.Gender
2022-03-17 10:33:20 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *PublicUserInfo) GetEx() string {
if m != nil {
return m.Ex
2022-03-17 10:33:20 +08:00
}
return ""
}
type GetJoinTokenReq struct {
2022-06-13 11:53:12 +08:00
Room string `protobuf:"bytes,1,opt,name=room" json:"room,omitempty"`
Identity string `protobuf:"bytes,2,opt,name=identity" json:"identity,omitempty"`
MetaData *ParticipantMetaData `protobuf:"bytes,3,opt,name=metaData" json:"metaData,omitempty"`
OperationID string `protobuf:"bytes,4,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) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{6}
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetJoinTokenReq.Unmarshal(m, b)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetJoinTokenReq.Marshal(b, m, deterministic)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *GetJoinTokenReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinTokenReq.Merge(dst, src)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenReq) XXX_Size() int {
return xxx_messageInfo_GetJoinTokenReq.Size(m)
}
func (m *GetJoinTokenReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinTokenReq.DiscardUnknown(m)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_GetJoinTokenReq proto.InternalMessageInfo
func (m *GetJoinTokenReq) GetRoom() string {
if m != nil {
return m.Room
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenReq) GetIdentity() string {
if m != nil {
return m.Identity
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenReq) GetMetaData() *ParticipantMetaData {
if m != nil {
return m.MetaData
2022-03-17 10:33:20 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenReq) GetOperationID() string {
if m != nil {
return m.OperationID
2022-03-17 10:33:20 +08:00
}
return ""
}
type GetJoinTokenResp struct {
2022-06-13 11:53:12 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=CommonResp" json:"CommonResp,omitempty"`
Jwt string `protobuf:"bytes,2,opt,name=jwt" json:"jwt,omitempty"`
LiveURL string `protobuf:"bytes,3,opt,name=liveURL" json:"liveURL,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +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) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{7}
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetJoinTokenResp.Unmarshal(m, b)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetJoinTokenResp.Marshal(b, m, deterministic)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *GetJoinTokenResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetJoinTokenResp.Merge(dst, src)
}
func (m *GetJoinTokenResp) XXX_Size() int {
return xxx_messageInfo_GetJoinTokenResp.Size(m)
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetJoinTokenResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetJoinTokenResp proto.InternalMessageInfo
2022-03-17 10:33:20 +08:00
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
2022-03-17 10:33:20 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenResp) GetJwt() string {
if m != nil {
return m.Jwt
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *GetJoinTokenResp) GetLiveURL() string {
if m != nil {
return m.LiveURL
2022-03-17 10:33:20 +08:00
}
return ""
}
2022-04-05 10:27:34 +08:00
type OfflinePushInfo struct {
2022-06-13 11:53:12 +08:00
Title string `protobuf:"bytes,1,opt,name=title" json:"title,omitempty"`
Desc string `protobuf:"bytes,2,opt,name=desc" json:"desc,omitempty"`
Ex string `protobuf:"bytes,3,opt,name=ex" json:"ex,omitempty"`
IOSPushSound string `protobuf:"bytes,4,opt,name=iOSPushSound" json:"iOSPushSound,omitempty"`
IOSBadgeCount bool `protobuf:"varint,5,opt,name=iOSBadgeCount" json:"iOSBadgeCount,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *OfflinePushInfo) Reset() { *m = OfflinePushInfo{} }
func (m *OfflinePushInfo) String() string { return proto.CompactTextString(m) }
func (*OfflinePushInfo) ProtoMessage() {}
func (*OfflinePushInfo) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{8}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OfflinePushInfo.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_OfflinePushInfo.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *OfflinePushInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_OfflinePushInfo.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) XXX_Size() int {
return xxx_messageInfo_OfflinePushInfo.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) XXX_DiscardUnknown() {
xxx_messageInfo_OfflinePushInfo.DiscardUnknown(m)
}
var xxx_messageInfo_OfflinePushInfo proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) GetTitle() string {
if m != nil {
return m.Title
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) GetDesc() string {
if m != nil {
return m.Desc
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) GetEx() string {
if m != nil {
return m.Ex
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) GetIOSPushSound() string {
if m != nil {
return m.IOSPushSound
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *OfflinePushInfo) GetIOSBadgeCount() bool {
if m != nil {
return m.IOSBadgeCount
2022-04-05 10:27:34 +08:00
}
return false
}
type SignalReq struct {
2022-06-13 11:53:12 +08:00
// Types that are valid to be assigned to Payload:
2022-04-05 10:27:34 +08:00
// *SignalReq_Invite
// *SignalReq_InviteInGroup
// *SignalReq_Cancel
// *SignalReq_Accept
// *SignalReq_HungUp
// *SignalReq_Reject
2022-06-13 11:53:12 +08:00
Payload isSignalReq_Payload `protobuf_oneof:"payload"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalReq) Reset() { *m = SignalReq{} }
func (m *SignalReq) String() string { return proto.CompactTextString(m) }
func (*SignalReq) ProtoMessage() {}
func (*SignalReq) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{9}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalReq.Unmarshal(m, b)
}
func (m *SignalReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalReq.Marshal(b, m, deterministic)
}
func (dst *SignalReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalReq.Merge(dst, src)
}
func (m *SignalReq) XXX_Size() int {
return xxx_messageInfo_SignalReq.Size(m)
}
func (m *SignalReq) XXX_DiscardUnknown() {
xxx_messageInfo_SignalReq.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_SignalReq proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
type isSignalReq_Payload interface {
isSignalReq_Payload()
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
type SignalReq_Invite struct {
Invite *SignalInviteReq `protobuf:"bytes,1,opt,name=invite,oneof"`
}
type SignalReq_InviteInGroup struct {
InviteInGroup *SignalInviteInGroupReq `protobuf:"bytes,2,opt,name=inviteInGroup,oneof"`
}
type SignalReq_Cancel struct {
Cancel *SignalCancelReq `protobuf:"bytes,3,opt,name=cancel,oneof"`
}
type SignalReq_Accept struct {
Accept *SignalAcceptReq `protobuf:"bytes,4,opt,name=accept,oneof"`
}
type SignalReq_HungUp struct {
HungUp *SignalHungUpReq `protobuf:"bytes,5,opt,name=hungUp,oneof"`
}
type SignalReq_Reject struct {
Reject *SignalRejectReq `protobuf:"bytes,6,opt,name=reject,oneof"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (*SignalReq_Invite) isSignalReq_Payload() {}
func (*SignalReq_InviteInGroup) isSignalReq_Payload() {}
func (*SignalReq_Cancel) isSignalReq_Payload() {}
func (*SignalReq_Accept) isSignalReq_Payload() {}
func (*SignalReq_HungUp) isSignalReq_Payload() {}
func (*SignalReq_Reject) isSignalReq_Payload() {}
2022-04-05 10:27:34 +08:00
func (m *SignalReq) GetPayload() isSignalReq_Payload {
if m != nil {
return m.Payload
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalReq) GetInvite() *SignalInviteReq {
if x, ok := m.GetPayload().(*SignalReq_Invite); ok {
2022-04-05 10:27:34 +08:00
return x.Invite
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalReq) GetInviteInGroup() *SignalInviteInGroupReq {
if x, ok := m.GetPayload().(*SignalReq_InviteInGroup); ok {
2022-04-05 10:27:34 +08:00
return x.InviteInGroup
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalReq) GetCancel() *SignalCancelReq {
if x, ok := m.GetPayload().(*SignalReq_Cancel); ok {
2022-04-05 10:27:34 +08:00
return x.Cancel
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalReq) GetAccept() *SignalAcceptReq {
if x, ok := m.GetPayload().(*SignalReq_Accept); ok {
2022-04-05 10:27:34 +08:00
return x.Accept
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalReq) GetHungUp() *SignalHungUpReq {
if x, ok := m.GetPayload().(*SignalReq_HungUp); ok {
2022-04-05 10:27:34 +08:00
return x.HungUp
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalReq) GetReject() *SignalRejectReq {
if x, ok := m.GetPayload().(*SignalReq_Reject); ok {
2022-04-05 10:27:34 +08:00
return x.Reject
}
return nil
}
2022-06-13 11:53:12 +08:00
// XXX_OneofFuncs is for the internal use of the proto package.
func (*SignalReq) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _SignalReq_OneofMarshaler, _SignalReq_OneofUnmarshaler, _SignalReq_OneofSizer, []interface{}{
(*SignalReq_Invite)(nil),
(*SignalReq_InviteInGroup)(nil),
(*SignalReq_Cancel)(nil),
(*SignalReq_Accept)(nil),
(*SignalReq_HungUp)(nil),
(*SignalReq_Reject)(nil),
}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func _SignalReq_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*SignalReq)
// payload
switch x := m.Payload.(type) {
case *SignalReq_Invite:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Invite); err != nil {
return err
}
case *SignalReq_InviteInGroup:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.InviteInGroup); err != nil {
return err
}
case *SignalReq_Cancel:
b.EncodeVarint(3<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Cancel); err != nil {
return err
}
case *SignalReq_Accept:
b.EncodeVarint(4<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Accept); err != nil {
return err
}
case *SignalReq_HungUp:
b.EncodeVarint(5<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.HungUp); err != nil {
return err
}
case *SignalReq_Reject:
b.EncodeVarint(6<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Reject); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("SignalReq.Payload has unexpected type %T", x)
}
return nil
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func _SignalReq_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*SignalReq)
switch tag {
case 1: // payload.invite
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalInviteReq)
err := b.DecodeMessage(msg)
m.Payload = &SignalReq_Invite{msg}
return true, err
case 2: // payload.inviteInGroup
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalInviteInGroupReq)
err := b.DecodeMessage(msg)
m.Payload = &SignalReq_InviteInGroup{msg}
return true, err
case 3: // payload.cancel
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalCancelReq)
err := b.DecodeMessage(msg)
m.Payload = &SignalReq_Cancel{msg}
return true, err
case 4: // payload.accept
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalAcceptReq)
err := b.DecodeMessage(msg)
m.Payload = &SignalReq_Accept{msg}
return true, err
case 5: // payload.hungUp
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalHungUpReq)
err := b.DecodeMessage(msg)
m.Payload = &SignalReq_HungUp{msg}
return true, err
case 6: // payload.reject
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalRejectReq)
err := b.DecodeMessage(msg)
m.Payload = &SignalReq_Reject{msg}
return true, err
default:
return false, nil
}
}
func _SignalReq_OneofSizer(msg proto.Message) (n int) {
m := msg.(*SignalReq)
// payload
switch x := m.Payload.(type) {
case *SignalReq_Invite:
s := proto.Size(x.Invite)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalReq_InviteInGroup:
s := proto.Size(x.InviteInGroup)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalReq_Cancel:
s := proto.Size(x.Cancel)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalReq_Accept:
s := proto.Size(x.Accept)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalReq_HungUp:
s := proto.Size(x.HungUp)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalReq_Reject:
s := proto.Size(x.Reject)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
2022-04-05 10:27:34 +08:00
}
type SignalResp struct {
2022-06-13 11:53:12 +08:00
// Types that are valid to be assigned to Payload:
2022-04-05 10:27:34 +08:00
// *SignalResp_Invite
// *SignalResp_InviteInGroup
// *SignalResp_Cancel
// *SignalResp_Accept
// *SignalResp_HungUp
// *SignalResp_Reject
2022-06-13 11:53:12 +08:00
Payload isSignalResp_Payload `protobuf_oneof:"payload"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalResp) Reset() { *m = SignalResp{} }
func (m *SignalResp) String() string { return proto.CompactTextString(m) }
func (*SignalResp) ProtoMessage() {}
func (*SignalResp) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{10}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalResp.Unmarshal(m, b)
}
func (m *SignalResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalResp.Marshal(b, m, deterministic)
}
func (dst *SignalResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalResp.Merge(dst, src)
}
func (m *SignalResp) XXX_Size() int {
return xxx_messageInfo_SignalResp.Size(m)
}
func (m *SignalResp) XXX_DiscardUnknown() {
xxx_messageInfo_SignalResp.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_SignalResp proto.InternalMessageInfo
type isSignalResp_Payload interface {
isSignalResp_Payload()
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
type SignalResp_Invite struct {
Invite *SignalInviteReply `protobuf:"bytes,1,opt,name=invite,oneof"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
type SignalResp_InviteInGroup struct {
InviteInGroup *SignalInviteInGroupReply `protobuf:"bytes,2,opt,name=inviteInGroup,oneof"`
}
type SignalResp_Cancel struct {
Cancel *SignalCancelReply `protobuf:"bytes,3,opt,name=cancel,oneof"`
}
type SignalResp_Accept struct {
Accept *SignalAcceptReply `protobuf:"bytes,4,opt,name=accept,oneof"`
}
type SignalResp_HungUp struct {
HungUp *SignalHungUpReply `protobuf:"bytes,5,opt,name=hungUp,oneof"`
}
type SignalResp_Reject struct {
Reject *SignalRejectReply `protobuf:"bytes,6,opt,name=reject,oneof"`
}
func (*SignalResp_Invite) isSignalResp_Payload() {}
func (*SignalResp_InviteInGroup) isSignalResp_Payload() {}
func (*SignalResp_Cancel) isSignalResp_Payload() {}
func (*SignalResp_Accept) isSignalResp_Payload() {}
func (*SignalResp_HungUp) isSignalResp_Payload() {}
func (*SignalResp_Reject) isSignalResp_Payload() {}
2022-04-05 10:27:34 +08:00
func (m *SignalResp) GetPayload() isSignalResp_Payload {
if m != nil {
return m.Payload
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalResp) GetInvite() *SignalInviteReply {
if x, ok := m.GetPayload().(*SignalResp_Invite); ok {
2022-04-05 10:27:34 +08:00
return x.Invite
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalResp) GetInviteInGroup() *SignalInviteInGroupReply {
if x, ok := m.GetPayload().(*SignalResp_InviteInGroup); ok {
2022-04-05 10:27:34 +08:00
return x.InviteInGroup
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalResp) GetCancel() *SignalCancelReply {
if x, ok := m.GetPayload().(*SignalResp_Cancel); ok {
2022-04-05 10:27:34 +08:00
return x.Cancel
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalResp) GetAccept() *SignalAcceptReply {
if x, ok := m.GetPayload().(*SignalResp_Accept); ok {
2022-04-05 10:27:34 +08:00
return x.Accept
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalResp) GetHungUp() *SignalHungUpReply {
if x, ok := m.GetPayload().(*SignalResp_HungUp); ok {
2022-04-05 10:27:34 +08:00
return x.HungUp
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalResp) GetReject() *SignalRejectReply {
if x, ok := m.GetPayload().(*SignalResp_Reject); ok {
2022-04-05 10:27:34 +08:00
return x.Reject
}
return nil
}
2022-06-13 11:53:12 +08:00
// XXX_OneofFuncs is for the internal use of the proto package.
func (*SignalResp) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _SignalResp_OneofMarshaler, _SignalResp_OneofUnmarshaler, _SignalResp_OneofSizer, []interface{}{
(*SignalResp_Invite)(nil),
(*SignalResp_InviteInGroup)(nil),
(*SignalResp_Cancel)(nil),
(*SignalResp_Accept)(nil),
(*SignalResp_HungUp)(nil),
(*SignalResp_Reject)(nil),
}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func _SignalResp_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*SignalResp)
// payload
switch x := m.Payload.(type) {
case *SignalResp_Invite:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Invite); err != nil {
return err
}
case *SignalResp_InviteInGroup:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.InviteInGroup); err != nil {
return err
}
case *SignalResp_Cancel:
b.EncodeVarint(3<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Cancel); err != nil {
return err
}
case *SignalResp_Accept:
b.EncodeVarint(4<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Accept); err != nil {
return err
}
case *SignalResp_HungUp:
b.EncodeVarint(5<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.HungUp); err != nil {
return err
}
case *SignalResp_Reject:
b.EncodeVarint(6<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Reject); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("SignalResp.Payload has unexpected type %T", x)
}
return nil
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func _SignalResp_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*SignalResp)
switch tag {
case 1: // payload.invite
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalInviteReply)
err := b.DecodeMessage(msg)
m.Payload = &SignalResp_Invite{msg}
return true, err
case 2: // payload.inviteInGroup
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalInviteInGroupReply)
err := b.DecodeMessage(msg)
m.Payload = &SignalResp_InviteInGroup{msg}
return true, err
case 3: // payload.cancel
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalCancelReply)
err := b.DecodeMessage(msg)
m.Payload = &SignalResp_Cancel{msg}
return true, err
case 4: // payload.accept
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalAcceptReply)
err := b.DecodeMessage(msg)
m.Payload = &SignalResp_Accept{msg}
return true, err
case 5: // payload.hungUp
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalHungUpReply)
err := b.DecodeMessage(msg)
m.Payload = &SignalResp_HungUp{msg}
return true, err
case 6: // payload.reject
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(SignalRejectReply)
err := b.DecodeMessage(msg)
m.Payload = &SignalResp_Reject{msg}
return true, err
default:
return false, nil
}
}
func _SignalResp_OneofSizer(msg proto.Message) (n int) {
m := msg.(*SignalResp)
// payload
switch x := m.Payload.(type) {
case *SignalResp_Invite:
s := proto.Size(x.Invite)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalResp_InviteInGroup:
s := proto.Size(x.InviteInGroup)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalResp_Cancel:
s := proto.Size(x.Cancel)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalResp_Accept:
s := proto.Size(x.Accept)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalResp_HungUp:
s := proto.Size(x.HungUp)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *SignalResp_Reject:
s := proto.Size(x.Reject)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
type InvitationInfo struct {
InviterUserID string `protobuf:"bytes,1,opt,name=inviterUserID" json:"inviterUserID,omitempty"`
InviteeUserIDList []string `protobuf:"bytes,2,rep,name=inviteeUserIDList" json:"inviteeUserIDList,omitempty"`
CustomData string `protobuf:"bytes,3,opt,name=customData" json:"customData,omitempty"`
GroupID string `protobuf:"bytes,4,opt,name=groupID" json:"groupID,omitempty"`
RoomID string `protobuf:"bytes,5,opt,name=roomID" json:"roomID,omitempty"`
2022-06-14 10:41:52 +08:00
Timeout int32 `protobuf:"varint,6,opt,name=timeout" json:"timeout,omitempty"`
MediaType string `protobuf:"bytes,7,opt,name=mediaType" json:"mediaType,omitempty"`
PlatformID int32 `protobuf:"varint,8,opt,name=platformID" json:"platformID,omitempty"`
SessionType int32 `protobuf:"varint,9,opt,name=sessionType" json:"sessionType,omitempty"`
InitiateTime int32 `protobuf:"varint,10,opt,name=initiateTime" json:"initiateTime,omitempty"`
2022-06-13 11:53:12 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *InvitationInfo) Reset() { *m = InvitationInfo{} }
func (m *InvitationInfo) String() string { return proto.CompactTextString(m) }
func (*InvitationInfo) ProtoMessage() {}
func (*InvitationInfo) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{11}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InvitationInfo.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_InvitationInfo.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *InvitationInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_InvitationInfo.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) XXX_Size() int {
return xxx_messageInfo_InvitationInfo.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) XXX_DiscardUnknown() {
xxx_messageInfo_InvitationInfo.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_InvitationInfo proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) GetInviterUserID() string {
if m != nil {
return m.InviterUserID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) GetInviteeUserIDList() []string {
if m != nil {
return m.InviteeUserIDList
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) GetCustomData() string {
if m != nil {
return m.CustomData
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) GetGroupID() string {
if m != nil {
return m.GroupID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) GetRoomID() string {
if m != nil {
return m.RoomID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) GetTimeout() int32 {
if m != nil {
return m.Timeout
}
return 0
}
func (m *InvitationInfo) GetMediaType() string {
if m != nil {
return m.MediaType
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) GetPlatformID() int32 {
if m != nil {
return m.PlatformID
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-13 11:53:12 +08:00
func (m *InvitationInfo) GetSessionType() int32 {
if m != nil {
return m.SessionType
2022-04-05 10:27:34 +08:00
}
return 0
}
2022-06-14 10:41:52 +08:00
func (m *InvitationInfo) GetInitiateTime() int32 {
if m != nil {
return m.InitiateTime
}
return 0
}
2022-04-05 10:27:34 +08:00
type SignalInviteReq struct {
2022-06-13 11:53:12 +08:00
OpUserID string `protobuf:"bytes,1,opt,name=opUserID" json:"opUserID,omitempty"`
Invitation *InvitationInfo `protobuf:"bytes,2,opt,name=invitation" json:"invitation,omitempty"`
OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,3,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
Participant *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant" json:"participant,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SignalInviteReq) Reset() { *m = SignalInviteReq{} }
func (m *SignalInviteReq) String() string { return proto.CompactTextString(m) }
func (*SignalInviteReq) ProtoMessage() {}
func (*SignalInviteReq) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{12}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalInviteReq.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalInviteReq.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalInviteReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalInviteReq.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReq) XXX_Size() int {
return xxx_messageInfo_SignalInviteReq.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReq) XXX_DiscardUnknown() {
xxx_messageInfo_SignalInviteReq.DiscardUnknown(m)
}
var xxx_messageInfo_SignalInviteReq proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReq) GetInvitation() *InvitationInfo {
if m != nil {
return m.Invitation
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReq) GetOfflinePushInfo() *OfflinePushInfo {
if m != nil {
return m.OfflinePushInfo
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReq) GetParticipant() *ParticipantMetaData {
if m != nil {
return m.Participant
2022-04-05 10:27:34 +08:00
}
return nil
}
type SignalInviteReply struct {
2022-06-13 11:53:12 +08:00
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
RoomID string `protobuf:"bytes,2,opt,name=roomID" json:"roomID,omitempty"`
LiveURL string `protobuf:"bytes,3,opt,name=liveURL" json:"liveURL,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReply) Reset() { *m = SignalInviteReply{} }
func (m *SignalInviteReply) String() string { return proto.CompactTextString(m) }
func (*SignalInviteReply) ProtoMessage() {}
func (*SignalInviteReply) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{13}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReply) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalInviteReply.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalInviteReply.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalInviteReply) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalInviteReply.Merge(dst, src)
}
func (m *SignalInviteReply) XXX_Size() int {
return xxx_messageInfo_SignalInviteReply.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReply) XXX_DiscardUnknown() {
xxx_messageInfo_SignalInviteReply.DiscardUnknown(m)
}
var xxx_messageInfo_SignalInviteReply proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReply) GetToken() string {
if m != nil {
return m.Token
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReply) GetRoomID() string {
if m != nil {
return m.RoomID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteReply) GetLiveURL() string {
if m != nil {
return m.LiveURL
2022-04-05 10:27:34 +08:00
}
return ""
}
type SignalInviteInGroupReq struct {
2022-06-13 11:53:12 +08:00
OpUserID string `protobuf:"bytes,1,opt,name=opUserID" json:"opUserID,omitempty"`
Invitation *InvitationInfo `protobuf:"bytes,2,opt,name=invitation" json:"invitation,omitempty"`
OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,3,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
Participant *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant" json:"participant,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SignalInviteInGroupReq) Reset() { *m = SignalInviteInGroupReq{} }
func (m *SignalInviteInGroupReq) String() string { return proto.CompactTextString(m) }
func (*SignalInviteInGroupReq) ProtoMessage() {}
func (*SignalInviteInGroupReq) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{14}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalInviteInGroupReq.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalInviteInGroupReq.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalInviteInGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalInviteInGroupReq.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReq) XXX_Size() int {
return xxx_messageInfo_SignalInviteInGroupReq.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_SignalInviteInGroupReq.DiscardUnknown(m)
}
var xxx_messageInfo_SignalInviteInGroupReq proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReq) GetInvitation() *InvitationInfo {
if m != nil {
return m.Invitation
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReq) GetOfflinePushInfo() *OfflinePushInfo {
if m != nil {
return m.OfflinePushInfo
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReq) GetParticipant() *ParticipantMetaData {
if m != nil {
return m.Participant
2022-04-05 10:27:34 +08:00
}
return nil
}
type SignalInviteInGroupReply struct {
2022-06-13 11:53:12 +08:00
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
RoomID string `protobuf:"bytes,2,opt,name=roomID" json:"roomID,omitempty"`
LiveURL string `protobuf:"bytes,3,opt,name=liveURL" json:"liveURL,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReply) Reset() { *m = SignalInviteInGroupReply{} }
func (m *SignalInviteInGroupReply) String() string { return proto.CompactTextString(m) }
func (*SignalInviteInGroupReply) ProtoMessage() {}
func (*SignalInviteInGroupReply) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{15}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReply) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalInviteInGroupReply.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalInviteInGroupReply.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalInviteInGroupReply) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalInviteInGroupReply.Merge(dst, src)
}
func (m *SignalInviteInGroupReply) XXX_Size() int {
return xxx_messageInfo_SignalInviteInGroupReply.Size(m)
}
func (m *SignalInviteInGroupReply) XXX_DiscardUnknown() {
xxx_messageInfo_SignalInviteInGroupReply.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_SignalInviteInGroupReply proto.InternalMessageInfo
func (m *SignalInviteInGroupReply) GetToken() string {
if m != nil {
return m.Token
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReply) GetRoomID() string {
if m != nil {
return m.RoomID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalInviteInGroupReply) GetLiveURL() string {
if m != nil {
return m.LiveURL
2022-04-05 10:27:34 +08:00
}
return ""
}
type SignalCancelReq struct {
2022-06-13 11:53:12 +08:00
OpUserID string `protobuf:"bytes,1,opt,name=opUserID" json:"opUserID,omitempty"`
Invitation *InvitationInfo `protobuf:"bytes,2,opt,name=invitation" json:"invitation,omitempty"`
OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,3,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
Participant *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant" json:"participant,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SignalCancelReq) Reset() { *m = SignalCancelReq{} }
func (m *SignalCancelReq) String() string { return proto.CompactTextString(m) }
func (*SignalCancelReq) ProtoMessage() {}
func (*SignalCancelReq) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{16}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalCancelReq.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalCancelReq.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalCancelReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalCancelReq.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReq) XXX_Size() int {
return xxx_messageInfo_SignalCancelReq.Size(m)
}
func (m *SignalCancelReq) XXX_DiscardUnknown() {
xxx_messageInfo_SignalCancelReq.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_SignalCancelReq proto.InternalMessageInfo
func (m *SignalCancelReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReq) GetInvitation() *InvitationInfo {
if m != nil {
return m.Invitation
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReq) GetOfflinePushInfo() *OfflinePushInfo {
if m != nil {
return m.OfflinePushInfo
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReq) GetParticipant() *ParticipantMetaData {
if m != nil {
return m.Participant
2022-04-05 10:27:34 +08:00
}
return nil
}
type SignalCancelReply struct {
2022-06-13 11:53:12 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReply) Reset() { *m = SignalCancelReply{} }
func (m *SignalCancelReply) String() string { return proto.CompactTextString(m) }
func (*SignalCancelReply) ProtoMessage() {}
func (*SignalCancelReply) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{17}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReply) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalCancelReply.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalCancelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalCancelReply.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalCancelReply) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalCancelReply.Merge(dst, src)
}
func (m *SignalCancelReply) XXX_Size() int {
return xxx_messageInfo_SignalCancelReply.Size(m)
}
func (m *SignalCancelReply) XXX_DiscardUnknown() {
xxx_messageInfo_SignalCancelReply.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_SignalCancelReply proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
type SignalAcceptReq struct {
OpUserID string `protobuf:"bytes,1,opt,name=opUserID" json:"opUserID,omitempty"`
Invitation *InvitationInfo `protobuf:"bytes,2,opt,name=invitation" json:"invitation,omitempty"`
OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,3,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
Participant *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant" json:"participant,omitempty"`
OpUserPlatformID int32 `protobuf:"varint,5,opt,name=opUserPlatformID" json:"opUserPlatformID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SignalAcceptReq) Reset() { *m = SignalAcceptReq{} }
func (m *SignalAcceptReq) String() string { return proto.CompactTextString(m) }
func (*SignalAcceptReq) ProtoMessage() {}
func (*SignalAcceptReq) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{18}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalAcceptReq.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalAcceptReq.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalAcceptReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalAcceptReq.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReq) XXX_Size() int {
return xxx_messageInfo_SignalAcceptReq.Size(m)
}
func (m *SignalAcceptReq) XXX_DiscardUnknown() {
xxx_messageInfo_SignalAcceptReq.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_SignalAcceptReq proto.InternalMessageInfo
func (m *SignalAcceptReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReq) GetInvitation() *InvitationInfo {
if m != nil {
return m.Invitation
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReq) GetOfflinePushInfo() *OfflinePushInfo {
if m != nil {
return m.OfflinePushInfo
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReq) GetParticipant() *ParticipantMetaData {
if m != nil {
return m.Participant
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReq) GetOpUserPlatformID() int32 {
if m != nil {
return m.OpUserPlatformID
2022-04-05 10:27:34 +08:00
}
return 0
}
type SignalAcceptReply struct {
2022-06-13 11:53:12 +08:00
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
RoomID string `protobuf:"bytes,2,opt,name=roomID" json:"roomID,omitempty"`
LiveURL string `protobuf:"bytes,3,opt,name=liveURL" json:"liveURL,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReply) Reset() { *m = SignalAcceptReply{} }
func (m *SignalAcceptReply) String() string { return proto.CompactTextString(m) }
func (*SignalAcceptReply) ProtoMessage() {}
func (*SignalAcceptReply) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{19}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReply) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalAcceptReply.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalAcceptReply.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalAcceptReply) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalAcceptReply.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReply) XXX_Size() int {
return xxx_messageInfo_SignalAcceptReply.Size(m)
}
func (m *SignalAcceptReply) XXX_DiscardUnknown() {
xxx_messageInfo_SignalAcceptReply.DiscardUnknown(m)
}
var xxx_messageInfo_SignalAcceptReply proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReply) GetToken() string {
if m != nil {
return m.Token
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReply) GetRoomID() string {
if m != nil {
return m.RoomID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalAcceptReply) GetLiveURL() string {
if m != nil {
return m.LiveURL
2022-04-05 10:27:34 +08:00
}
return ""
}
type SignalHungUpReq struct {
2022-06-13 11:53:12 +08:00
OpUserID string `protobuf:"bytes,1,opt,name=opUserID" json:"opUserID,omitempty"`
Invitation *InvitationInfo `protobuf:"bytes,2,opt,name=invitation" json:"invitation,omitempty"`
OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,3,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReq) Reset() { *m = SignalHungUpReq{} }
func (m *SignalHungUpReq) String() string { return proto.CompactTextString(m) }
func (*SignalHungUpReq) ProtoMessage() {}
func (*SignalHungUpReq) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{20}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalHungUpReq.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalHungUpReq.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalHungUpReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalHungUpReq.Merge(dst, src)
}
func (m *SignalHungUpReq) XXX_Size() int {
return xxx_messageInfo_SignalHungUpReq.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReq) XXX_DiscardUnknown() {
xxx_messageInfo_SignalHungUpReq.DiscardUnknown(m)
}
var xxx_messageInfo_SignalHungUpReq proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReq) GetInvitation() *InvitationInfo {
if m != nil {
return m.Invitation
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReq) GetOfflinePushInfo() *OfflinePushInfo {
if m != nil {
return m.OfflinePushInfo
2022-04-05 10:27:34 +08:00
}
return nil
}
type SignalHungUpReply struct {
2022-06-13 11:53:12 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReply) Reset() { *m = SignalHungUpReply{} }
func (m *SignalHungUpReply) String() string { return proto.CompactTextString(m) }
func (*SignalHungUpReply) ProtoMessage() {}
func (*SignalHungUpReply) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{21}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReply) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalHungUpReply.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalHungUpReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalHungUpReply.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalHungUpReply) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalHungUpReply.Merge(dst, src)
}
func (m *SignalHungUpReply) XXX_Size() int {
return xxx_messageInfo_SignalHungUpReply.Size(m)
}
func (m *SignalHungUpReply) XXX_DiscardUnknown() {
xxx_messageInfo_SignalHungUpReply.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_SignalHungUpReply proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
type SignalRejectReq struct {
OpUserID string `protobuf:"bytes,1,opt,name=opUserID" json:"opUserID,omitempty"`
Invitation *InvitationInfo `protobuf:"bytes,2,opt,name=invitation" json:"invitation,omitempty"`
OfflinePushInfo *OfflinePushInfo `protobuf:"bytes,3,opt,name=offlinePushInfo" json:"offlinePushInfo,omitempty"`
Participant *ParticipantMetaData `protobuf:"bytes,4,opt,name=participant" json:"participant,omitempty"`
OpUserPlatformID int32 `protobuf:"varint,5,opt,name=opUserPlatformID" json:"opUserPlatformID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SignalRejectReq) Reset() { *m = SignalRejectReq{} }
func (m *SignalRejectReq) String() string { return proto.CompactTextString(m) }
func (*SignalRejectReq) ProtoMessage() {}
func (*SignalRejectReq) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{22}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalRejectReq.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalRejectReq.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalRejectReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalRejectReq.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) XXX_Size() int {
return xxx_messageInfo_SignalRejectReq.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) XXX_DiscardUnknown() {
xxx_messageInfo_SignalRejectReq.DiscardUnknown(m)
}
var xxx_messageInfo_SignalRejectReq proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
2022-04-05 10:27:34 +08:00
}
return ""
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) GetInvitation() *InvitationInfo {
if m != nil {
return m.Invitation
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) GetOfflinePushInfo() *OfflinePushInfo {
if m != nil {
return m.OfflinePushInfo
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) GetParticipant() *ParticipantMetaData {
if m != nil {
return m.Participant
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReq) GetOpUserPlatformID() int32 {
if m != nil {
return m.OpUserPlatformID
2022-04-05 10:27:34 +08:00
}
return 0
}
type SignalRejectReply struct {
2022-06-13 11:53:12 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReply) Reset() { *m = SignalRejectReply{} }
func (m *SignalRejectReply) String() string { return proto.CompactTextString(m) }
func (*SignalRejectReply) ProtoMessage() {}
func (*SignalRejectReply) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{23}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReply) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalRejectReply.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalRejectReply.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalRejectReply) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalRejectReply.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReply) XXX_Size() int {
return xxx_messageInfo_SignalRejectReply.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalRejectReply) XXX_DiscardUnknown() {
xxx_messageInfo_SignalRejectReply.DiscardUnknown(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
var xxx_messageInfo_SignalRejectReply proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
type SignalMessageAssembleReq struct {
SignalReq *SignalReq `protobuf:"bytes,1,opt,name=signalReq" json:"signalReq,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleReq) Reset() { *m = SignalMessageAssembleReq{} }
func (m *SignalMessageAssembleReq) String() string { return proto.CompactTextString(m) }
func (*SignalMessageAssembleReq) ProtoMessage() {}
2022-04-05 10:27:34 +08:00
func (*SignalMessageAssembleReq) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{24}
2022-06-13 11:53:12 +08:00
}
func (m *SignalMessageAssembleReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalMessageAssembleReq.Unmarshal(m, b)
}
func (m *SignalMessageAssembleReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalMessageAssembleReq.Marshal(b, m, deterministic)
}
func (dst *SignalMessageAssembleReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalMessageAssembleReq.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleReq) XXX_Size() int {
return xxx_messageInfo_SignalMessageAssembleReq.Size(m)
}
func (m *SignalMessageAssembleReq) XXX_DiscardUnknown() {
xxx_messageInfo_SignalMessageAssembleReq.DiscardUnknown(m)
}
var xxx_messageInfo_SignalMessageAssembleReq proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleReq) GetSignalReq() *SignalReq {
if m != nil {
return m.SignalReq
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleReq) GetOperationID() string {
if m != nil {
return m.OperationID
2022-04-05 10:27:34 +08:00
}
return ""
}
type SignalMessageAssembleResp struct {
2022-06-13 11:53:12 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
IsPass bool `protobuf:"varint,2,opt,name=isPass" json:"isPass,omitempty"`
SignalResp *SignalResp `protobuf:"bytes,3,opt,name=signalResp" json:"signalResp,omitempty"`
MsgData *MsgData `protobuf:"bytes,4,opt,name=msgData" json:"msgData,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SignalMessageAssembleResp) Reset() { *m = SignalMessageAssembleResp{} }
func (m *SignalMessageAssembleResp) String() string { return proto.CompactTextString(m) }
func (*SignalMessageAssembleResp) ProtoMessage() {}
func (*SignalMessageAssembleResp) Descriptor() ([]byte, []int) {
2022-06-14 10:41:52 +08:00
return fileDescriptor_rtc_2059f33abbeeea7e, []int{25}
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalMessageAssembleResp.Unmarshal(m, b)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SignalMessageAssembleResp.Marshal(b, m, deterministic)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (dst *SignalMessageAssembleResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_SignalMessageAssembleResp.Merge(dst, src)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleResp) XXX_Size() int {
return xxx_messageInfo_SignalMessageAssembleResp.Size(m)
2022-04-05 10:27:34 +08:00
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleResp) XXX_DiscardUnknown() {
xxx_messageInfo_SignalMessageAssembleResp.DiscardUnknown(m)
}
var xxx_messageInfo_SignalMessageAssembleResp proto.InternalMessageInfo
2022-04-05 10:27:34 +08:00
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleResp) GetIsPass() bool {
if m != nil {
return m.IsPass
2022-04-05 10:27:34 +08:00
}
return false
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleResp) GetSignalResp() *SignalResp {
if m != nil {
return m.SignalResp
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func (m *SignalMessageAssembleResp) GetMsgData() *MsgData {
if m != nil {
return m.MsgData
2022-04-05 10:27:34 +08:00
}
return nil
}
2022-06-13 11:53:12 +08:00
func init() {
proto.RegisterType((*CommonResp)(nil), "proto.CommonResp")
proto.RegisterType((*MsgData)(nil), "proto.MsgData")
proto.RegisterMapType((map[string]bool)(nil), "proto.MsgData.OptionsEntry")
proto.RegisterType((*GroupInfo)(nil), "proto.GroupInfo")
proto.RegisterType((*GroupMemberFullInfo)(nil), "proto.GroupMemberFullInfo")
proto.RegisterType((*ParticipantMetaData)(nil), "proto.ParticipantMetaData")
proto.RegisterType((*PublicUserInfo)(nil), "proto.PublicUserInfo")
proto.RegisterType((*GetJoinTokenReq)(nil), "proto.GetJoinTokenReq")
proto.RegisterType((*GetJoinTokenResp)(nil), "proto.GetJoinTokenResp")
proto.RegisterType((*OfflinePushInfo)(nil), "proto.OfflinePushInfo")
proto.RegisterType((*SignalReq)(nil), "proto.SignalReq")
proto.RegisterType((*SignalResp)(nil), "proto.SignalResp")
proto.RegisterType((*InvitationInfo)(nil), "proto.InvitationInfo")
proto.RegisterType((*SignalInviteReq)(nil), "proto.SignalInviteReq")
proto.RegisterType((*SignalInviteReply)(nil), "proto.SignalInviteReply")
proto.RegisterType((*SignalInviteInGroupReq)(nil), "proto.SignalInviteInGroupReq")
proto.RegisterType((*SignalInviteInGroupReply)(nil), "proto.SignalInviteInGroupReply")
proto.RegisterType((*SignalCancelReq)(nil), "proto.SignalCancelReq")
proto.RegisterType((*SignalCancelReply)(nil), "proto.SignalCancelReply")
proto.RegisterType((*SignalAcceptReq)(nil), "proto.SignalAcceptReq")
proto.RegisterType((*SignalAcceptReply)(nil), "proto.SignalAcceptReply")
proto.RegisterType((*SignalHungUpReq)(nil), "proto.SignalHungUpReq")
proto.RegisterType((*SignalHungUpReply)(nil), "proto.SignalHungUpReply")
proto.RegisterType((*SignalRejectReq)(nil), "proto.SignalRejectReq")
proto.RegisterType((*SignalRejectReply)(nil), "proto.SignalRejectReply")
proto.RegisterType((*SignalMessageAssembleReq)(nil), "proto.SignalMessageAssembleReq")
proto.RegisterType((*SignalMessageAssembleResp)(nil), "proto.SignalMessageAssembleResp")
2022-03-17 10:33:20 +08:00
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
2022-06-13 11:53:12 +08:00
var _ grpc.ClientConn
2022-03-17 10:33:20 +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-06-13 11:53:12 +08:00
const _ = grpc.SupportPackageIsVersion4
// Client API for RtcService service
2022-03-17 10:33:20 +08:00
type RtcServiceClient interface {
2022-04-05 10:27:34 +08:00
SignalMessageAssemble(ctx context.Context, in *SignalMessageAssembleReq, opts ...grpc.CallOption) (*SignalMessageAssembleResp, error)
2022-03-17 10:33:20 +08:00
}
type rtcServiceClient struct {
2022-06-13 11:53:12 +08:00
cc *grpc.ClientConn
2022-03-17 10:33:20 +08:00
}
2022-06-13 11:53:12 +08:00
func NewRtcServiceClient(cc *grpc.ClientConn) RtcServiceClient {
2022-03-17 10:33:20 +08:00
return &rtcServiceClient{cc}
}
2022-04-05 10:27:34 +08:00
func (c *rtcServiceClient) SignalMessageAssemble(ctx context.Context, in *SignalMessageAssembleReq, opts ...grpc.CallOption) (*SignalMessageAssembleResp, error) {
out := new(SignalMessageAssembleResp)
2022-06-13 11:53:12 +08:00
err := grpc.Invoke(ctx, "/proto.RtcService/SignalMessageAssemble", in, out, c.cc, opts...)
2022-03-17 10:33:20 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2022-06-13 11:53:12 +08:00
// Server API for RtcService service
2022-03-17 10:33:20 +08:00
type RtcServiceServer interface {
2022-04-05 10:27:34 +08:00
SignalMessageAssemble(context.Context, *SignalMessageAssembleReq) (*SignalMessageAssembleResp, error)
2022-03-17 10:33:20 +08:00
}
func RegisterRtcServiceServer(s *grpc.Server, srv RtcServiceServer) {
s.RegisterService(&_RtcService_serviceDesc, srv)
}
2022-04-05 10:27:34 +08:00
func _RtcService_SignalMessageAssemble_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SignalMessageAssembleReq)
2022-03-17 10:33:20 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2022-04-05 10:27:34 +08:00
return srv.(RtcServiceServer).SignalMessageAssemble(ctx, in)
2022-03-17 10:33:20 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2022-04-05 10:27:34 +08:00
FullMethod: "/proto.RtcService/SignalMessageAssemble",
2022-03-17 10:33:20 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2022-04-05 10:27:34 +08:00
return srv.(RtcServiceServer).SignalMessageAssemble(ctx, req.(*SignalMessageAssembleReq))
2022-03-17 10:33:20 +08:00
}
return interceptor(ctx, in, info, handler)
}
var _RtcService_serviceDesc = grpc.ServiceDesc{
2022-04-05 10:27:34 +08:00
ServiceName: "proto.RtcService",
2022-03-17 10:33:20 +08:00
HandlerType: (*RtcServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
2022-04-05 10:27:34 +08:00
MethodName: "SignalMessageAssemble",
Handler: _RtcService_SignalMessageAssemble_Handler,
2022-03-17 10:33:20 +08:00
},
},
Streams: []grpc.StreamDesc{},
2022-06-13 11:53:12 +08:00
Metadata: "rtc/rtc.proto",
}
2022-06-14 10:41:52 +08:00
func init() { proto.RegisterFile("rtc/rtc.proto", fileDescriptor_rtc_2059f33abbeeea7e) }
2022-06-13 11:53:12 +08:00
2022-06-14 10:41:52 +08:00
var fileDescriptor_rtc_2059f33abbeeea7e = []byte{
2022-06-13 11:53:12 +08:00
// 1579 bytes of a gzipped FileDescriptorProto
2022-06-14 10:41:52 +08:00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0xcd, 0x6e, 0xdb, 0xc6,
0x16, 0xbe, 0x94, 0x2c, 0xdb, 0x3a, 0xf2, 0xef, 0xf8, 0xc6, 0xe0, 0xf5, 0xfd, 0x13, 0x84, 0x20,
0x10, 0x82, 0x0b, 0xe7, 0x46, 0x45, 0x8a, 0x22, 0x2d, 0x8a, 0x26, 0x76, 0x7e, 0x54, 0xc4, 0xb1,
0x31, 0x8e, 0x37, 0xe9, 0x8a, 0xa6, 0xc6, 0xca, 0x24, 0x24, 0x87, 0x1e, 0x0e, 0x9d, 0xf8, 0x05,
0xba, 0xee, 0xa6, 0xab, 0x6e, 0x8b, 0xbe, 0x42, 0x77, 0xdd, 0xf4, 0x15, 0x0a, 0xf4, 0x05, 0xb2,
0xeb, 0xba, 0xfb, 0x62, 0xce, 0x0c, 0xc9, 0x21, 0x2d, 0xa7, 0x29, 0x90, 0x45, 0x91, 0xae, 0xc4,
0xf3, 0x37, 0x33, 0xfc, 0xce, 0x37, 0xe7, 0x1c, 0x11, 0x96, 0xa5, 0x0a, 0x6f, 0x48, 0x15, 0x6e,
0xa7, 0x52, 0x28, 0x41, 0x3a, 0xf8, 0x33, 0xf8, 0x14, 0x60, 0x47, 0xc4, 0xb1, 0x48, 0x28, 0xcb,
0x52, 0xe2, 0xc3, 0x02, 0x93, 0x72, 0x47, 0x4c, 0x98, 0xef, 0xf5, 0xbd, 0x61, 0x87, 0x16, 0x22,
0xd9, 0x84, 0x79, 0x26, 0xe5, 0x5e, 0x36, 0xf5, 0x5b, 0x7d, 0x6f, 0xd8, 0xa5, 0x56, 0x1a, 0x7c,
0xdb, 0x81, 0x85, 0xbd, 0x6c, 0xba, 0x1b, 0xa8, 0x40, 0xfb, 0x64, 0x2c, 0x99, 0x8c, 0x77, 0x31,
0xb8, 0x4b, 0xad, 0xa4, 0xf5, 0x92, 0x85, 0x67, 0xe3, 0xdd, 0x22, 0xd6, 0x48, 0x7a, 0xb7, 0xa9,
0x14, 0x79, 0x3a, 0xde, 0xf5, 0xdb, 0x68, 0x28, 0x44, 0xd2, 0x87, 0x5e, 0x18, 0x71, 0x96, 0xa8,
0xbd, 0x6c, 0x3a, 0xde, 0xf5, 0xe7, 0xd0, 0xea, 0xaa, 0xb4, 0x47, 0xc6, 0xe4, 0x19, 0x93, 0xc6,
0xa3, 0x63, 0x3c, 0x1c, 0x15, 0xb9, 0x0e, 0x6b, 0x7a, 0x7f, 0x26, 0x0f, 0xa2, 0x40, 0x9d, 0x08,
0x19, 0x8f, 0x77, 0xfd, 0x79, 0x7c, 0xa9, 0x0b, 0x7a, 0x72, 0x0d, 0x56, 0x8c, 0xee, 0x31, 0x0f,
0x5f, 0x24, 0x41, 0xcc, 0xfc, 0x05, 0x5c, 0xb0, 0xa1, 0x25, 0x57, 0x61, 0xd9, 0x68, 0xee, 0x07,
0x21, 0x3b, 0xa2, 0x8f, 0xfc, 0x45, 0x74, 0xab, 0x2b, 0xcd, 0xd9, 0xb2, 0x8c, 0x8b, 0xe4, 0xc9,
0x79, 0xca, 0xfc, 0x2e, 0x6e, 0xea, 0xaa, 0xf4, 0x9b, 0xc7, 0xd9, 0xf4, 0xbe, 0x14, 0xb1, 0x0f,
0x06, 0x67, 0x2b, 0xe2, 0x9b, 0x8b, 0x44, 0xb1, 0x44, 0x61, 0x6c, 0xcf, 0xc4, 0x3a, 0x2a, 0x1d,
0x6b, 0x45, 0x7f, 0xa9, 0xef, 0x0d, 0x97, 0x68, 0x21, 0x92, 0x35, 0x68, 0x67, 0xec, 0xd4, 0x5f,
0xe9, 0x7b, 0xc3, 0x65, 0xaa, 0x1f, 0xc9, 0x16, 0x2c, 0xea, 0xa3, 0x3d, 0xe1, 0x31, 0xf3, 0x57,
0xfb, 0xde, 0xb0, 0x4d, 0x4b, 0x99, 0xfc, 0x07, 0x20, 0x94, 0x2c, 0x50, 0x0c, 0xad, 0x6b, 0x68,
0x75, 0x34, 0x98, 0x4d, 0x15, 0xa8, 0x3c, 0xf3, 0xd7, 0xf1, 0x10, 0x56, 0x22, 0xb7, 0x60, 0x41,
0xa4, 0x8a, 0x8b, 0x24, 0xf3, 0x49, 0xbf, 0x3d, 0xec, 0x8d, 0xfe, 0x69, 0x18, 0xb5, 0x6d, 0x69,
0xb0, 0xbd, 0x6f, 0xac, 0xf7, 0x12, 0x25, 0xcf, 0x69, 0xe1, 0x4b, 0x3e, 0x83, 0x55, 0x71, 0x72,
0x12, 0xf1, 0x84, 0x1d, 0xe4, 0xd9, 0xb3, 0x71, 0x72, 0x22, 0xfc, 0x8d, 0xbe, 0x37, 0xec, 0x8d,
0x36, 0x6d, 0xf8, 0x7e, 0xdd, 0x4a, 0x9b, 0xee, 0x5b, 0xb7, 0x61, 0xc9, 0x5d, 0x5a, 0xbf, 0xee,
0x0b, 0x76, 0x6e, 0xb9, 0xa6, 0x1f, 0xc9, 0xdf, 0xa1, 0x73, 0x16, 0x44, 0x39, 0x43, 0x9e, 0x2d,
0x52, 0x23, 0xdc, 0x6e, 0x7d, 0xe4, 0x0d, 0x7e, 0x6d, 0x41, 0xf7, 0x01, 0x92, 0x2b, 0x39, 0x11,
0x2e, 0xf1, 0xbc, 0x3a, 0xf1, 0xfe, 0x05, 0x5d, 0x7c, 0x7c, 0xac, 0x39, 0x60, 0xd8, 0x5a, 0x29,
0xc8, 0x00, 0x96, 0x12, 0xa1, 0xf8, 0x09, 0x0f, 0x03, 0x7d, 0x0e, 0xcb, 0xda, 0x9a, 0x4e, 0xfb,
0xf0, 0x44, 0x49, 0x31, 0xc9, 0x43, 0xf4, 0x31, 0xdc, 0xad, 0xe9, 0xf4, 0xfe, 0x27, 0x96, 0x40,
0x86, 0xb8, 0x85, 0xa8, 0xd3, 0x2f, 0x5e, 0x26, 0x4c, 0x1e, 0x65, 0x4c, 0x5a, 0xbe, 0x76, 0xa9,
0xab, 0x6a, 0xa4, 0x6d, 0x01, 0x73, 0xed, 0xa6, 0xad, 0x0f, 0xbd, 0x98, 0xc5, 0xc7, 0x4c, 0xee,
0x88, 0x3c, 0x51, 0x48, 0xd0, 0x65, 0xea, 0xaa, 0xc8, 0x0a, 0xb4, 0xd8, 0x2b, 0x64, 0x65, 0x97,
0xb6, 0xd8, 0x2b, 0x27, 0xd1, 0x50, 0x4b, 0xf4, 0x55, 0x58, 0xc6, 0x75, 0x45, 0x71, 0x9a, 0x9e,
0x21, 0x7b, 0x4d, 0x59, 0x22, 0x86, 0x74, 0x5d, 0xc2, 0x05, 0x2a, 0xc5, 0xe0, 0xfb, 0x16, 0x6c,
0x20, 0xee, 0x7b, 0x78, 0x80, 0xfb, 0x79, 0x14, 0xfd, 0x4e, 0x06, 0x36, 0x61, 0x3e, 0x37, 0xdb,
0xd9, 0x62, 0x91, 0x97, 0xfb, 0x48, 0x11, 0xb1, 0x47, 0xec, 0x8c, 0x45, 0x08, 0x7c, 0x87, 0x56,
0x0a, 0x4d, 0xf4, 0xe7, 0x82, 0x27, 0x88, 0xc9, 0x1c, 0x1a, 0x4b, 0x59, 0xdb, 0x92, 0xe2, 0x5a,
0x1b, 0xb8, 0x4b, 0xd9, 0xcd, 0xc4, 0x7c, 0x3d, 0x13, 0xd7, 0x60, 0x25, 0x48, 0xd3, 0xbd, 0x20,
0x99, 0x32, 0x69, 0x36, 0x5d, 0xc0, 0x75, 0x1b, 0x5a, 0x9d, 0x0f, 0xbd, 0xd3, 0xa1, 0xc8, 0x65,
0xc8, 0x10, 0xee, 0x0e, 0x75, 0x34, 0x7a, 0x1d, 0x91, 0x32, 0xe9, 0xc0, 0x68, 0x90, 0x6f, 0x68,
0x6d, 0x56, 0xa0, 0xc8, 0xca, 0xe0, 0x07, 0x0f, 0x36, 0x0e, 0x02, 0xa9, 0x78, 0xc8, 0xd3, 0x20,
0x51, 0x7b, 0x4c, 0x05, 0x58, 0x64, 0xb7, 0x2d, 0xde, 0x78, 0x83, 0x3c, 0xbc, 0x41, 0x6b, 0xf6,
0x06, 0x95, 0x04, 0xa7, 0x95, 0x0b, 0xd9, 0x85, 0xd5, 0x69, 0x95, 0x00, 0x8c, 0x6a, 0x61, 0xd4,
0x96, 0x1b, 0x55, 0x4f, 0x0f, 0x6d, 0x86, 0x90, 0x9b, 0xb0, 0x88, 0x79, 0xd0, 0xe1, 0x6d, 0x0c,
0xbf, 0x62, 0xc3, 0x0f, 0xf2, 0xe3, 0x88, 0x87, 0x47, 0xd6, 0x48, 0x4b, 0xb7, 0xc1, 0x97, 0x1e,
0xac, 0xd4, 0x8d, 0x4e, 0x6e, 0xbd, 0x5a, 0x6e, 0xdd, 0x0c, 0xb5, 0x2e, 0xcf, 0x50, 0xbb, 0x9e,
0xa1, 0x4d, 0x98, 0x9f, 0x62, 0xdd, 0xb5, 0x19, 0xb7, 0x92, 0x45, 0xb2, 0x53, 0x22, 0xf9, 0x8d,
0x07, 0xab, 0x0f, 0x98, 0xfa, 0x5c, 0xf3, 0x41, 0xbc, 0x60, 0x09, 0x65, 0xa7, 0x84, 0xc0, 0x9c,
0x14, 0x22, 0xb6, 0xe7, 0xc0, 0x67, 0x7d, 0x0a, 0x3e, 0x61, 0x89, 0xe2, 0xea, 0xbc, 0x38, 0x45,
0x21, 0x93, 0x0f, 0x61, 0x31, 0xb6, 0x19, 0xb0, 0xef, 0x5f, 0xc0, 0x37, 0x23, 0x47, 0xb4, 0xf4,
0xc5, 0xfb, 0x8c, 0x79, 0xe6, 0x22, 0xa9, 0x1a, 0x99, 0xa3, 0x1a, 0x9c, 0xc2, 0x5a, 0xfd, 0x70,
0x59, 0x4a, 0x6e, 0xba, 0x4d, 0xd9, 0x26, 0x79, 0xdd, 0xee, 0x57, 0x19, 0xa8, 0xdb, 0xb9, 0xd7,
0xa0, 0xfd, 0xfc, 0xa5, 0xb2, 0xe7, 0xd6, 0x8f, 0x1a, 0xb8, 0x88, 0x9f, 0xb9, 0xc0, 0x59, 0x71,
0xf0, 0xb5, 0x07, 0xab, 0x8d, 0x6a, 0xab, 0x4b, 0xa7, 0xe2, 0x2a, 0x62, 0x16, 0x11, 0x23, 0x68,
0x98, 0x26, 0x2c, 0x0b, 0xed, 0xb2, 0xf8, 0x6c, 0xe1, 0x6d, 0x97, 0xe5, 0x43, 0x17, 0xbc, 0xfd,
0x43, 0xbd, 0xd0, 0xa1, 0xc8, 0x93, 0x49, 0x59, 0xf0, 0x1c, 0x9d, 0x2e, 0x25, 0x7c, 0xff, 0xf0,
0x6e, 0x30, 0x99, 0x32, 0x53, 0x96, 0x3a, 0x58, 0xa0, 0xeb, 0xca, 0xc1, 0xcf, 0x2d, 0xe8, 0x1e,
0xf2, 0x69, 0x12, 0x44, 0x3a, 0x45, 0xff, 0x87, 0x79, 0x9e, 0x9c, 0x71, 0xc5, 0x2c, 0x00, 0x45,
0x9f, 0x30, 0x1e, 0x63, 0x34, 0x51, 0x76, 0xfa, 0xf0, 0x6f, 0xd4, 0xfa, 0x91, 0x7b, 0xb0, 0x6c,
0x9e, 0xc6, 0x09, 0x92, 0xda, 0x12, 0xfd, 0xdf, 0x33, 0x02, 0xad, 0x87, 0x89, 0xaf, 0x47, 0xe9,
0x8d, 0xc3, 0x20, 0x09, 0x6d, 0x99, 0x69, 0x6e, 0xbc, 0x83, 0x26, 0xbb, 0xb1, 0xf1, 0xd3, 0x11,
0x41, 0x18, 0xb2, 0x54, 0xe1, 0xcb, 0x37, 0x23, 0xee, 0xa0, 0xc9, 0x46, 0x18, 0x3f, 0x1d, 0xf1,
0x2c, 0x4f, 0xa6, 0x47, 0x29, 0x22, 0xd1, 0x8c, 0x78, 0x88, 0x26, 0x1b, 0x61, 0xfc, 0x74, 0x84,
0x64, 0xcf, 0x59, 0xa8, 0xb0, 0x50, 0x35, 0x23, 0x28, 0x9a, 0x6c, 0x84, 0xf1, 0xbb, 0xdb, 0x85,
0x85, 0x34, 0x38, 0x8f, 0x44, 0x30, 0x19, 0xbc, 0x6e, 0x01, 0x14, 0x8e, 0x59, 0x4a, 0x46, 0x0d,
0x68, 0xfd, 0x99, 0xd0, 0xa6, 0xd1, 0xb9, 0x03, 0xee, 0x83, 0xd9, 0xe0, 0xfe, 0xf7, 0x4d, 0xe0,
0x9a, 0x15, 0x1a, 0xf0, 0x8e, 0x1a, 0xf0, 0xfa, 0x33, 0xe1, 0xb5, 0x9b, 0x5b, 0x80, 0x47, 0x0d,
0x80, 0xfd, 0x99, 0x00, 0xdb, 0x18, 0x0b, 0xf1, 0xa8, 0x01, 0xb1, 0x3f, 0x13, 0x62, 0x1b, 0x63,
0x41, 0x1e, 0x35, 0x40, 0xf6, 0x67, 0x82, 0x6c, 0x63, 0x2e, 0xc2, 0xfc, 0x53, 0x0b, 0x56, 0x10,
0x02, 0x73, 0xb9, 0xf5, 0xbd, 0xba, 0x5a, 0xc0, 0x56, 0x54, 0x7f, 0x73, 0xbf, 0xea, 0x4a, 0xf2,
0x3f, 0x58, 0x37, 0x0a, 0x66, 0x14, 0x8f, 0x78, 0xa6, 0xef, 0x72, 0x7b, 0xd8, 0xa5, 0x17, 0x0d,
0x38, 0x02, 0xe4, 0x99, 0x12, 0x71, 0x59, 0x8e, 0xba, 0xd4, 0xd1, 0xb8, 0xcd, 0x75, 0xee, 0x42,
0x73, 0xd5, 0xa5, 0xae, 0x1c, 0x98, 0xad, 0xa4, 0x23, 0x14, 0x8f, 0x99, 0xc8, 0x95, 0x1d, 0x91,
0x0b, 0x51, 0xb7, 0xdd, 0x98, 0x4d, 0x78, 0x80, 0xed, 0xdd, 0x0c, 0xc5, 0x95, 0x42, 0x9f, 0x24,
0xad, 0xa6, 0x6b, 0xdb, 0xfc, 0x2a, 0xcd, 0x5b, 0x4c, 0xc2, 0x38, 0x2e, 0x71, 0xc5, 0x8b, 0x81,
0xc6, 0x8c, 0x20, 0x35, 0xdd, 0xe0, 0xb5, 0x07, 0xab, 0x8d, 0x5b, 0xaf, 0x8b, 0xb5, 0x48, 0x6b,
0x90, 0x96, 0x32, 0xb9, 0x05, 0xc0, 0xcb, 0x2c, 0x58, 0x9e, 0x16, 0xed, 0xaa, 0x9e, 0x1e, 0xea,
0x38, 0xce, 0x9a, 0x50, 0xdb, 0x7f, 0x68, 0x42, 0x25, 0x9f, 0x40, 0x2f, 0xad, 0xda, 0x81, 0xe5,
0xea, 0x9b, 0x1a, 0x85, 0xeb, 0x3e, 0xf8, 0x02, 0xd6, 0x2f, 0x5c, 0x40, 0xac, 0xcb, 0xba, 0x2f,
0x94, 0x75, 0x59, 0x0b, 0x4e, 0x1e, 0x5b, 0xcd, 0x3c, 0x5e, 0x52, 0xf3, 0x7f, 0xf1, 0x60, 0x73,
0x76, 0x01, 0x7c, 0x1f, 0xa1, 0x3c, 0x06, 0xff, 0xb2, 0x82, 0xf4, 0xce, 0x10, 0xad, 0x58, 0x59,
0xb6, 0x84, 0xf7, 0x11, 0xca, 0x8d, 0x82, 0x95, 0x4e, 0x65, 0x1e, 0x7c, 0xd5, 0x2a, 0xde, 0xbd,
0x6c, 0x6e, 0xef, 0xe1, 0xbb, 0x93, 0xeb, 0xb0, 0x66, 0x5e, 0xc1, 0xf9, 0x84, 0xd0, 0x31, 0x9f,
0x10, 0x9a, 0xfa, 0xea, 0xf6, 0x3a, 0xdd, 0xe8, 0x9d, 0x71, 0xed, 0xbb, 0x92, 0x6b, 0xe5, 0x68,
0xf0, 0xa7, 0xc4, 0xbb, 0x62, 0x8b, 0xd3, 0x5f, 0x1d, 0xb6, 0x94, 0x63, 0xca, 0x5f, 0x9d, 0x2d,
0x25, 0x4e, 0xce, 0x4c, 0x31, 0x88, 0x8a, 0xaa, 0xb5, 0xc7, 0xb2, 0x2c, 0x98, 0xb2, 0x3b, 0x59,
0xc6, 0xe2, 0xe3, 0x08, 0xfb, 0xdd, 0x36, 0x74, 0xb3, 0x62, 0x34, 0x6e, 0xfc, 0xed, 0x2b, 0x47,
0x66, 0x5a, 0xb9, 0x34, 0xff, 0x78, 0xb4, 0x2e, 0xfe, 0xf1, 0xf8, 0xd1, 0x83, 0x7f, 0x5c, 0xb2,
0x9d, 0xf9, 0x0b, 0x12, 0xbe, 0xcd, 0x5f, 0x90, 0xca, 0x49, 0xd3, 0x9a, 0x67, 0x07, 0x41, 0x96,
0xd9, 0xcf, 0x2f, 0x56, 0xd2, 0x4b, 0x65, 0xe5, 0xec, 0x69, 0x53, 0xb2, 0xde, 0x38, 0xbb, 0x5e,
0xaa, 0x72, 0x22, 0x43, 0xfc, 0x3e, 0x86, 0xe3, 0x8d, 0x49, 0xc2, 0x4a, 0xfd, 0x1b, 0x13, 0x2d,
0xcc, 0xa3, 0x67, 0x00, 0x54, 0x85, 0x87, 0x4c, 0x9e, 0xf1, 0x90, 0x91, 0xa7, 0x70, 0x65, 0xe6,
0x2b, 0x91, 0xfa, 0x98, 0x7a, 0x11, 0xdf, 0xad, 0xfe, 0x9b, 0x1d, 0xb2, 0xf4, 0x6e, 0xef, 0x69,
0x77, 0xfb, 0x86, 0x54, 0xe1, 0xc7, 0x52, 0x85, 0xc7, 0xf3, 0xe8, 0xfd, 0xc1, 0x6f, 0x01, 0x00,
0x00, 0xff, 0xff, 0xcb, 0x87, 0xc7, 0x8b, 0x55, 0x15, 0x00, 0x00,
2022-03-17 10:33:20 +08:00
}