Files
home-sensors/gen/signaler_service.pb.go
Charles Hathaway ac4e32697c add: sensors
2023-10-01 22:02:30 -07:00

1996 lines
67 KiB
Go

// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.31.0
// protoc (unknown)
// source: signaler_service.proto
package gen
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type Sample_Type int32
const (
Sample_UNSPECIFIED Sample_Type = 0
Sample_TEMPERATURE_C Sample_Type = 1
Sample_HUMIDITY Sample_Type = 2
Sample_PRESSURE Sample_Type = 3
)
// Enum value maps for Sample_Type.
var (
Sample_Type_name = map[int32]string{
0: "UNSPECIFIED",
1: "TEMPERATURE_C",
2: "HUMIDITY",
3: "PRESSURE",
}
Sample_Type_value = map[string]int32{
"UNSPECIFIED": 0,
"TEMPERATURE_C": 1,
"HUMIDITY": 2,
"PRESSURE": 3,
}
)
func (x Sample_Type) Enum() *Sample_Type {
p := new(Sample_Type)
*p = x
return p
}
func (x Sample_Type) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (Sample_Type) Descriptor() protoreflect.EnumDescriptor {
return file_signaler_service_proto_enumTypes[0].Descriptor()
}
func (Sample_Type) Type() protoreflect.EnumType {
return &file_signaler_service_proto_enumTypes[0]
}
func (x Sample_Type) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use Sample_Type.Descriptor instead.
func (Sample_Type) EnumDescriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{20, 0}
}
type CreateAuthTokenRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Homes this auth token should be registered too.
Home string `protobuf:"bytes,1,opt,name=home,proto3" json:"home,omitempty"`
// Types that are assignable to Type:
//
// *CreateAuthTokenRequest_Camera_
// *CreateAuthTokenRequest_Client_
Type isCreateAuthTokenRequest_Type `protobuf_oneof:"type"`
}
func (x *CreateAuthTokenRequest) Reset() {
*x = CreateAuthTokenRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateAuthTokenRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateAuthTokenRequest) ProtoMessage() {}
func (x *CreateAuthTokenRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateAuthTokenRequest.ProtoReflect.Descriptor instead.
func (*CreateAuthTokenRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{0}
}
func (x *CreateAuthTokenRequest) GetHome() string {
if x != nil {
return x.Home
}
return ""
}
func (m *CreateAuthTokenRequest) GetType() isCreateAuthTokenRequest_Type {
if m != nil {
return m.Type
}
return nil
}
func (x *CreateAuthTokenRequest) GetCamera() *CreateAuthTokenRequest_Camera {
if x, ok := x.GetType().(*CreateAuthTokenRequest_Camera_); ok {
return x.Camera
}
return nil
}
func (x *CreateAuthTokenRequest) GetClient() *CreateAuthTokenRequest_Client {
if x, ok := x.GetType().(*CreateAuthTokenRequest_Client_); ok {
return x.Client
}
return nil
}
type isCreateAuthTokenRequest_Type interface {
isCreateAuthTokenRequest_Type()
}
type CreateAuthTokenRequest_Camera_ struct {
Camera *CreateAuthTokenRequest_Camera `protobuf:"bytes,2,opt,name=camera,proto3,oneof"`
}
type CreateAuthTokenRequest_Client_ struct {
Client *CreateAuthTokenRequest_Client `protobuf:"bytes,3,opt,name=client,proto3,oneof"`
}
func (*CreateAuthTokenRequest_Camera_) isCreateAuthTokenRequest_Type() {}
func (*CreateAuthTokenRequest_Client_) isCreateAuthTokenRequest_Type() {}
type ListCamerasRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *ListCamerasRequest) Reset() {
*x = ListCamerasRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListCamerasRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListCamerasRequest) ProtoMessage() {}
func (x *ListCamerasRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListCamerasRequest.ProtoReflect.Descriptor instead.
func (*ListCamerasRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{1}
}
type ListCamerasResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Cameras []*Camera `protobuf:"bytes,1,rep,name=cameras,proto3" json:"cameras,omitempty"`
}
func (x *ListCamerasResponse) Reset() {
*x = ListCamerasResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListCamerasResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListCamerasResponse) ProtoMessage() {}
func (x *ListCamerasResponse) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListCamerasResponse.ProtoReflect.Descriptor instead.
func (*ListCamerasResponse) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{2}
}
func (x *ListCamerasResponse) GetCameras() []*Camera {
if x != nil {
return x.Cameras
}
return nil
}
type CreateSessionRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
// If true, will keep the connection alive until an update is received.
// This is useful if we need to wait for a remote to detect the session
// request and update it with their candidates, offer, or answer.
WaitForUpdate bool `protobuf:"varint,2,opt,name=wait_for_update,json=waitForUpdate,proto3" json:"wait_for_update,omitempty"`
}
func (x *CreateSessionRequest) Reset() {
*x = CreateSessionRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateSessionRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateSessionRequest) ProtoMessage() {}
func (x *CreateSessionRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateSessionRequest.ProtoReflect.Descriptor instead.
func (*CreateSessionRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{3}
}
func (x *CreateSessionRequest) GetSession() *Session {
if x != nil {
return x.Session
}
return nil
}
func (x *CreateSessionRequest) GetWaitForUpdate() bool {
if x != nil {
return x.WaitForUpdate
}
return false
}
type PopSessionRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
}
func (x *PopSessionRequest) Reset() {
*x = PopSessionRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PopSessionRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PopSessionRequest) ProtoMessage() {}
func (x *PopSessionRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PopSessionRequest.ProtoReflect.Descriptor instead.
func (*PopSessionRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{4}
}
func (x *PopSessionRequest) GetSession() *Session {
if x != nil {
return x.Session
}
return nil
}
type UpdateSessionRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
// If true, will keep the connection alive until an update is received.
// This is useful if we need to wait for a remote to detect the session
// request and update it with their candidates, offer, or answer.
WaitForUpdate bool `protobuf:"varint,2,opt,name=wait_for_update,json=waitForUpdate,proto3" json:"wait_for_update,omitempty"`
}
func (x *UpdateSessionRequest) Reset() {
*x = UpdateSessionRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UpdateSessionRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UpdateSessionRequest) ProtoMessage() {}
func (x *UpdateSessionRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UpdateSessionRequest.ProtoReflect.Descriptor instead.
func (*UpdateSessionRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{5}
}
func (x *UpdateSessionRequest) GetSession() *Session {
if x != nil {
return x.Session
}
return nil
}
func (x *UpdateSessionRequest) GetWaitForUpdate() bool {
if x != nil {
return x.WaitForUpdate
}
return false
}
type ListSessionsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *ListSessionsRequest) Reset() {
*x = ListSessionsRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListSessionsRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListSessionsRequest) ProtoMessage() {}
func (x *ListSessionsRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListSessionsRequest.ProtoReflect.Descriptor instead.
func (*ListSessionsRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{6}
}
type ListSessionsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Sessions []*Session `protobuf:"bytes,1,rep,name=sessions,proto3" json:"sessions,omitempty"`
}
func (x *ListSessionsResponse) Reset() {
*x = ListSessionsResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListSessionsResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListSessionsResponse) ProtoMessage() {}
func (x *ListSessionsResponse) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListSessionsResponse.ProtoReflect.Descriptor instead.
func (*ListSessionsResponse) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{7}
}
func (x *ListSessionsResponse) GetSessions() []*Session {
if x != nil {
return x.Sessions
}
return nil
}
type CreateIceMessageRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
SessionIdentifier *Session_Identifier `protobuf:"bytes,1,opt,name=session_identifier,json=sessionIdentifier,proto3" json:"session_identifier,omitempty"`
IceMessage *IceMessage `protobuf:"bytes,2,opt,name=ice_message,json=iceMessage,proto3" json:"ice_message,omitempty"`
}
func (x *CreateIceMessageRequest) Reset() {
*x = CreateIceMessageRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateIceMessageRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateIceMessageRequest) ProtoMessage() {}
func (x *CreateIceMessageRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateIceMessageRequest.ProtoReflect.Descriptor instead.
func (*CreateIceMessageRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{8}
}
func (x *CreateIceMessageRequest) GetSessionIdentifier() *Session_Identifier {
if x != nil {
return x.SessionIdentifier
}
return nil
}
func (x *CreateIceMessageRequest) GetIceMessage() *IceMessage {
if x != nil {
return x.IceMessage
}
return nil
}
type PopIceMessageRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
SessionIdentifier *Session_Identifier `protobuf:"bytes,1,opt,name=session_identifier,json=sessionIdentifier,proto3" json:"session_identifier,omitempty"`
}
func (x *PopIceMessageRequest) Reset() {
*x = PopIceMessageRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PopIceMessageRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PopIceMessageRequest) ProtoMessage() {}
func (x *PopIceMessageRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PopIceMessageRequest.ProtoReflect.Descriptor instead.
func (*PopIceMessageRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{9}
}
func (x *PopIceMessageRequest) GetSessionIdentifier() *Session_Identifier {
if x != nil {
return x.SessionIdentifier
}
return nil
}
type CreateSampleRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Sample *Sample `protobuf:"bytes,1,opt,name=sample,proto3" json:"sample,omitempty"`
}
func (x *CreateSampleRequest) Reset() {
*x = CreateSampleRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateSampleRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateSampleRequest) ProtoMessage() {}
func (x *CreateSampleRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateSampleRequest.ProtoReflect.Descriptor instead.
func (*CreateSampleRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{10}
}
func (x *CreateSampleRequest) GetSample() *Sample {
if x != nil {
return x.Sample
}
return nil
}
type ListSamplesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *ListSamplesRequest) Reset() {
*x = ListSamplesRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListSamplesRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListSamplesRequest) ProtoMessage() {}
func (x *ListSamplesRequest) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListSamplesRequest.ProtoReflect.Descriptor instead.
func (*ListSamplesRequest) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{11}
}
type ListSamplesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Samples []*Sample `protobuf:"bytes,1,rep,name=samples,proto3" json:"samples,omitempty"`
}
func (x *ListSamplesResponse) Reset() {
*x = ListSamplesResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListSamplesResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListSamplesResponse) ProtoMessage() {}
func (x *ListSamplesResponse) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListSamplesResponse.ProtoReflect.Descriptor instead.
func (*ListSamplesResponse) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{12}
}
func (x *ListSamplesResponse) GetSamples() []*Sample {
if x != nil {
return x.Samples
}
return nil
}
type Camera struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Identifier *Camera_Identifier `protobuf:"bytes,1,opt,name=identifier,proto3" json:"identifier,omitempty"`
}
func (x *Camera) Reset() {
*x = Camera{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Camera) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Camera) ProtoMessage() {}
func (x *Camera) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Camera.ProtoReflect.Descriptor instead.
func (*Camera) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{13}
}
func (x *Camera) GetIdentifier() *Camera_Identifier {
if x != nil {
return x.Identifier
}
return nil
}
type IceMessage struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Types that are assignable to Type:
//
// *IceMessage_Candidate
// *IceMessage_Session
// *IceMessage_NoMoreCandidates
Type isIceMessage_Type `protobuf_oneof:"type"`
}
func (x *IceMessage) Reset() {
*x = IceMessage{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *IceMessage) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*IceMessage) ProtoMessage() {}
func (x *IceMessage) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use IceMessage.ProtoReflect.Descriptor instead.
func (*IceMessage) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{14}
}
func (m *IceMessage) GetType() isIceMessage_Type {
if m != nil {
return m.Type
}
return nil
}
func (x *IceMessage) GetCandidate() *IceCandidate {
if x, ok := x.GetType().(*IceMessage_Candidate); ok {
return x.Candidate
}
return nil
}
func (x *IceMessage) GetSession() *IceSessionDescription {
if x, ok := x.GetType().(*IceMessage_Session); ok {
return x.Session
}
return nil
}
func (x *IceMessage) GetNoMoreCandidates() *NoMoreCandidates {
if x, ok := x.GetType().(*IceMessage_NoMoreCandidates); ok {
return x.NoMoreCandidates
}
return nil
}
type isIceMessage_Type interface {
isIceMessage_Type()
}
type IceMessage_Candidate struct {
Candidate *IceCandidate `protobuf:"bytes,1,opt,name=candidate,proto3,oneof"`
}
type IceMessage_Session struct {
Session *IceSessionDescription `protobuf:"bytes,2,opt,name=session,proto3,oneof"`
}
type IceMessage_NoMoreCandidates struct {
NoMoreCandidates *NoMoreCandidates `protobuf:"bytes,3,opt,name=no_more_candidates,json=noMoreCandidates,proto3,oneof"`
}
func (*IceMessage_Candidate) isIceMessage_Type() {}
func (*IceMessage_Session) isIceMessage_Type() {}
func (*IceMessage_NoMoreCandidates) isIceMessage_Type() {}
type NoMoreCandidates struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *NoMoreCandidates) Reset() {
*x = NoMoreCandidates{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *NoMoreCandidates) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*NoMoreCandidates) ProtoMessage() {}
func (x *NoMoreCandidates) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use NoMoreCandidates.ProtoReflect.Descriptor instead.
func (*NoMoreCandidates) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{15}
}
type IceCandidate struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Copied from https://pkg.go.dev/github.com/pion/webrtc/v4#ICECandidateInit
Candidate string `protobuf:"bytes,1,opt,name=candidate,proto3" json:"candidate,omitempty"`
SdpMid *string `protobuf:"bytes,2,opt,name=sdp_mid,json=sdpMid,proto3,oneof" json:"sdp_mid,omitempty"`
SdpLineIndex *int32 `protobuf:"varint,3,opt,name=sdp_line_index,json=sdpLineIndex,proto3,oneof" json:"sdp_line_index,omitempty"`
UsernameFragment *string `protobuf:"bytes,4,opt,name=username_fragment,json=usernameFragment,proto3,oneof" json:"username_fragment,omitempty"`
}
func (x *IceCandidate) Reset() {
*x = IceCandidate{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *IceCandidate) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*IceCandidate) ProtoMessage() {}
func (x *IceCandidate) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[16]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use IceCandidate.ProtoReflect.Descriptor instead.
func (*IceCandidate) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{16}
}
func (x *IceCandidate) GetCandidate() string {
if x != nil {
return x.Candidate
}
return ""
}
func (x *IceCandidate) GetSdpMid() string {
if x != nil && x.SdpMid != nil {
return *x.SdpMid
}
return ""
}
func (x *IceCandidate) GetSdpLineIndex() int32 {
if x != nil && x.SdpLineIndex != nil {
return *x.SdpLineIndex
}
return 0
}
func (x *IceCandidate) GetUsernameFragment() string {
if x != nil && x.UsernameFragment != nil {
return *x.UsernameFragment
}
return ""
}
type IceSessionDescription struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Copied from https://pkg.go.dev/github.com/pion/webrtc/v4#SessionDescription
SdpType int64 `protobuf:"varint,1,opt,name=sdp_type,json=sdpType,proto3" json:"sdp_type,omitempty"`
Sdp string `protobuf:"bytes,2,opt,name=sdp,proto3" json:"sdp,omitempty"`
}
func (x *IceSessionDescription) Reset() {
*x = IceSessionDescription{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *IceSessionDescription) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*IceSessionDescription) ProtoMessage() {}
func (x *IceSessionDescription) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[17]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use IceSessionDescription.ProtoReflect.Descriptor instead.
func (*IceSessionDescription) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{17}
}
func (x *IceSessionDescription) GetSdpType() int64 {
if x != nil {
return x.SdpType
}
return 0
}
func (x *IceSessionDescription) GetSdp() string {
if x != nil {
return x.Sdp
}
return ""
}
type Session struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id *Session_Identifier `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Camera *Camera_Identifier `protobuf:"bytes,2,opt,name=camera,proto3" json:"camera,omitempty"`
}
func (x *Session) Reset() {
*x = Session{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Session) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Session) ProtoMessage() {}
func (x *Session) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[18]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Session.ProtoReflect.Descriptor instead.
func (*Session) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{18}
}
func (x *Session) GetId() *Session_Identifier {
if x != nil {
return x.Id
}
return nil
}
func (x *Session) GetCamera() *Camera_Identifier {
if x != nil {
return x.Camera
}
return nil
}
type AuthToken struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
}
func (x *AuthToken) Reset() {
*x = AuthToken{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *AuthToken) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AuthToken) ProtoMessage() {}
func (x *AuthToken) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[19]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use AuthToken.ProtoReflect.Descriptor instead.
func (*AuthToken) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{19}
}
func (x *AuthToken) GetToken() string {
if x != nil {
return x.Token
}
return ""
}
type Sample struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Type Sample_Type `protobuf:"varint,1,opt,name=type,proto3,enum=signaler.Sample_Type" json:"type,omitempty"`
Reading float64 `protobuf:"fixed64,2,opt,name=reading,proto3" json:"reading,omitempty"`
CameraId *Camera_Identifier `protobuf:"bytes,3,opt,name=camera_id,json=cameraId,proto3" json:"camera_id,omitempty"`
}
func (x *Sample) Reset() {
*x = Sample{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Sample) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Sample) ProtoMessage() {}
func (x *Sample) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[20]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Sample.ProtoReflect.Descriptor instead.
func (*Sample) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{20}
}
func (x *Sample) GetType() Sample_Type {
if x != nil {
return x.Type
}
return Sample_UNSPECIFIED
}
func (x *Sample) GetReading() float64 {
if x != nil {
return x.Reading
}
return 0
}
func (x *Sample) GetCameraId() *Camera_Identifier {
if x != nil {
return x.CameraId
}
return nil
}
type CreateAuthTokenRequest_Camera struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Used to uniquely identifier this camera so clients can open
// sessions with it.
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}
func (x *CreateAuthTokenRequest_Camera) Reset() {
*x = CreateAuthTokenRequest_Camera{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateAuthTokenRequest_Camera) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateAuthTokenRequest_Camera) ProtoMessage() {}
func (x *CreateAuthTokenRequest_Camera) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[21]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateAuthTokenRequest_Camera.ProtoReflect.Descriptor instead.
func (*CreateAuthTokenRequest_Camera) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{0, 0}
}
func (x *CreateAuthTokenRequest_Camera) GetId() string {
if x != nil {
return x.Id
}
return ""
}
type CreateAuthTokenRequest_Client struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *CreateAuthTokenRequest_Client) Reset() {
*x = CreateAuthTokenRequest_Client{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateAuthTokenRequest_Client) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateAuthTokenRequest_Client) ProtoMessage() {}
func (x *CreateAuthTokenRequest_Client) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[22]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateAuthTokenRequest_Client.ProtoReflect.Descriptor instead.
func (*CreateAuthTokenRequest_Client) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{0, 1}
}
type Camera_Identifier struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}
func (x *Camera_Identifier) Reset() {
*x = Camera_Identifier{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Camera_Identifier) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Camera_Identifier) ProtoMessage() {}
func (x *Camera_Identifier) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[23]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Camera_Identifier.ProtoReflect.Descriptor instead.
func (*Camera_Identifier) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{13, 0}
}
func (x *Camera_Identifier) GetId() string {
if x != nil {
return x.Id
}
return ""
}
type Session_Identifier struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
}
func (x *Session_Identifier) Reset() {
*x = Session_Identifier{}
if protoimpl.UnsafeEnabled {
mi := &file_signaler_service_proto_msgTypes[24]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Session_Identifier) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Session_Identifier) ProtoMessage() {}
func (x *Session_Identifier) ProtoReflect() protoreflect.Message {
mi := &file_signaler_service_proto_msgTypes[24]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Session_Identifier.ProtoReflect.Descriptor instead.
func (*Session_Identifier) Descriptor() ([]byte, []int) {
return file_signaler_service_proto_rawDescGZIP(), []int{18, 0}
}
func (x *Session_Identifier) GetId() string {
if x != nil {
return x.Id
}
return ""
}
var File_signaler_service_proto protoreflect.FileDescriptor
var file_signaler_service_proto_rawDesc = []byte{
0x0a, 0x16, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69,
0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c,
0x65, 0x72, 0x22, 0xde, 0x01, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x75, 0x74,
0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
0x04, 0x68, 0x6f, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x6d,
0x65, 0x12, 0x41, 0x0a, 0x06, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x27, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65,
0x61, 0x74, 0x65, 0x41, 0x75, 0x74, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x2e, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x48, 0x00, 0x52, 0x06, 0x63, 0x61,
0x6d, 0x65, 0x72, 0x61, 0x12, 0x41, 0x0a, 0x06, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x03,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e,
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x75, 0x74, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52,
0x06, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x1a, 0x18, 0x0a, 0x06, 0x43, 0x61, 0x6d, 0x65, 0x72,
0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
0x64, 0x1a, 0x08, 0x0a, 0x06, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x42, 0x06, 0x0a, 0x04, 0x74,
0x79, 0x70, 0x65, 0x22, 0x14, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x61, 0x6d, 0x65, 0x72,
0x61, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x13, 0x4c, 0x69, 0x73,
0x74, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x12, 0x2a, 0x0a, 0x07, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x10, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x43, 0x61, 0x6d,
0x65, 0x72, 0x61, 0x52, 0x07, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x73, 0x22, 0x6b, 0x0a, 0x14,
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x12, 0x2b, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72,
0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x12, 0x26, 0x0a, 0x0f, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x75, 0x70,
0x64, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x77, 0x61, 0x69, 0x74,
0x46, 0x6f, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x22, 0x40, 0x0a, 0x11, 0x50, 0x6f, 0x70,
0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2b,
0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x11, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69,
0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x6b, 0x0a, 0x14, 0x55,
0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x12, 0x2b, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e,
0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
0x12, 0x26, 0x0a, 0x0f, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x75, 0x70, 0x64,
0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x77, 0x61, 0x69, 0x74, 0x46,
0x6f, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x22, 0x15, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74,
0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
0x45, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2d, 0x0a, 0x08, 0x73, 0x65, 0x73, 0x73, 0x69,
0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x73, 0x69, 0x67, 0x6e,
0x61, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x08, 0x73, 0x65,
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x9d, 0x01, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74,
0x65, 0x49, 0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x12, 0x4b, 0x0a, 0x12, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c,
0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x11, 0x73, 0x65,
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12,
0x35, 0x0a, 0x0b, 0x69, 0x63, 0x65, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e,
0x49, 0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x0a, 0x69, 0x63, 0x65, 0x4d,
0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x63, 0x0a, 0x14, 0x50, 0x6f, 0x70, 0x49, 0x63, 0x65,
0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4b,
0x0a, 0x12, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
0x66, 0x69, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x73, 0x69, 0x67,
0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x64,
0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x11, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x22, 0x3f, 0x0a, 0x13, 0x43,
0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x12, 0x28, 0x0a, 0x06, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x10, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x61,
0x6d, 0x70, 0x6c, 0x65, 0x52, 0x06, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x22, 0x14, 0x0a, 0x12,
0x4c, 0x69, 0x73, 0x74, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x22, 0x41, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65,
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x07, 0x73, 0x61, 0x6d,
0x70, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x73, 0x69, 0x67,
0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x07, 0x73, 0x61,
0x6d, 0x70, 0x6c, 0x65, 0x73, 0x22, 0x63, 0x0a, 0x06, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x12,
0x3b, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x43,
0x61, 0x6d, 0x65, 0x72, 0x61, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72,
0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x1a, 0x1c, 0x0a, 0x0a,
0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xd5, 0x01, 0x0a, 0x0a, 0x49,
0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x36, 0x0a, 0x09, 0x63, 0x61, 0x6e,
0x64, 0x69, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x73,
0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x49, 0x63, 0x65, 0x43, 0x61, 0x6e, 0x64, 0x69,
0x64, 0x61, 0x74, 0x65, 0x48, 0x00, 0x52, 0x09, 0x63, 0x61, 0x6e, 0x64, 0x69, 0x64, 0x61, 0x74,
0x65, 0x12, 0x3b, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x49, 0x63,
0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4a,
0x0a, 0x12, 0x6e, 0x6f, 0x5f, 0x6d, 0x6f, 0x72, 0x65, 0x5f, 0x63, 0x61, 0x6e, 0x64, 0x69, 0x64,
0x61, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x73, 0x69, 0x67,
0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x4e, 0x6f, 0x4d, 0x6f, 0x72, 0x65, 0x43, 0x61, 0x6e, 0x64,
0x69, 0x64, 0x61, 0x74, 0x65, 0x73, 0x48, 0x00, 0x52, 0x10, 0x6e, 0x6f, 0x4d, 0x6f, 0x72, 0x65,
0x43, 0x61, 0x6e, 0x64, 0x69, 0x64, 0x61, 0x74, 0x65, 0x73, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79,
0x70, 0x65, 0x22, 0x12, 0x0a, 0x10, 0x4e, 0x6f, 0x4d, 0x6f, 0x72, 0x65, 0x43, 0x61, 0x6e, 0x64,
0x69, 0x64, 0x61, 0x74, 0x65, 0x73, 0x22, 0xdc, 0x01, 0x0a, 0x0c, 0x49, 0x63, 0x65, 0x43, 0x61,
0x6e, 0x64, 0x69, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x61, 0x6e, 0x64, 0x69,
0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x61, 0x6e, 0x64,
0x69, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a, 0x07, 0x73, 0x64, 0x70, 0x5f, 0x6d, 0x69, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x73, 0x64, 0x70, 0x4d, 0x69, 0x64,
0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x73, 0x64, 0x70, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x5f,
0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x0c, 0x73,
0x64, 0x70, 0x4c, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x88, 0x01, 0x01, 0x12, 0x30,
0x0a, 0x11, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x66, 0x72, 0x61, 0x67, 0x6d,
0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x10, 0x75, 0x73, 0x65,
0x72, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01,
0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x73, 0x64, 0x70, 0x5f, 0x6d, 0x69, 0x64, 0x42, 0x11, 0x0a, 0x0f,
0x5f, 0x73, 0x64, 0x70, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x42,
0x14, 0x0a, 0x12, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x66, 0x72, 0x61,
0x67, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x44, 0x0a, 0x15, 0x49, 0x63, 0x65, 0x53, 0x65, 0x73, 0x73,
0x69, 0x6f, 0x6e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19,
0x0a, 0x08, 0x73, 0x64, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
0x52, 0x07, 0x73, 0x64, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x64, 0x70,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x64, 0x70, 0x22, 0x8a, 0x01, 0x0a, 0x07,
0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2c, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x53,
0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65,
0x72, 0x52, 0x02, 0x69, 0x64, 0x12, 0x33, 0x0a, 0x06, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x18,
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72,
0x2e, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69,
0x65, 0x72, 0x52, 0x06, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x1a, 0x1c, 0x0a, 0x0a, 0x49, 0x64,
0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x21, 0x0a, 0x09, 0x41, 0x75, 0x74, 0x68,
0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xcf, 0x01, 0x0a, 0x06,
0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x12, 0x29, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e,
0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70,
0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01,
0x28, 0x01, 0x52, 0x07, 0x72, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x38, 0x0a, 0x09, 0x63,
0x61, 0x6d, 0x65, 0x72, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b,
0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61,
0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x08, 0x63, 0x61, 0x6d,
0x65, 0x72, 0x61, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x11,
0x0a, 0x0d, 0x54, 0x45, 0x4d, 0x50, 0x45, 0x52, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x43, 0x10,
0x01, 0x12, 0x0c, 0x0a, 0x08, 0x48, 0x55, 0x4d, 0x49, 0x44, 0x49, 0x54, 0x59, 0x10, 0x02, 0x12,
0x0c, 0x0a, 0x08, 0x50, 0x52, 0x45, 0x53, 0x53, 0x55, 0x52, 0x45, 0x10, 0x03, 0x32, 0xca, 0x04,
0x0a, 0x0f, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x12, 0x48, 0x0a, 0x0f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x75, 0x74, 0x68, 0x54,
0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x20, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e,
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x75, 0x74, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65,
0x72, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x4a, 0x0a, 0x0b, 0x4c,
0x69, 0x73, 0x74, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x73, 0x12, 0x1c, 0x2e, 0x73, 0x69, 0x67,
0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61,
0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61,
0x6c, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x73, 0x52,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74,
0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61,
0x6c, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61,
0x6c, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x3c, 0x0a, 0x0a, 0x50,
0x6f, 0x70, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x2e, 0x73, 0x69, 0x67, 0x6e,
0x61, 0x6c, 0x65, 0x72, 0x2e, 0x50, 0x6f, 0x70, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65,
0x72, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x10, 0x43, 0x72, 0x65,
0x61, 0x74, 0x65, 0x49, 0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x21, 0x2e,
0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49,
0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x1a, 0x14, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x49, 0x63, 0x65, 0x4d,
0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x45, 0x0a, 0x0d, 0x50, 0x6f, 0x70, 0x49, 0x63, 0x65,
0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1e, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c,
0x65, 0x72, 0x2e, 0x50, 0x6f, 0x70, 0x49, 0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c,
0x65, 0x72, 0x2e, 0x49, 0x63, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x3f, 0x0a,
0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x12, 0x1d, 0x2e,
0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
0x61, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x10, 0x2e, 0x73,
0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x12, 0x4a,
0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x12, 0x1c, 0x2e,
0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x61, 0x6d,
0x70, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x73, 0x69,
0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x61, 0x6d, 0x70, 0x6c,
0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x94, 0x01, 0x0a, 0x0c, 0x63,
0x6f, 0x6d, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x42, 0x14, 0x53, 0x69, 0x67,
0x6e, 0x61, 0x6c, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x2e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
0x63, 0x68, 0x61, 0x74, 0x68, 0x61, 0x77, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x64, 0x65, 0x73, 0x2f,
0x68, 0x6f, 0x6d, 0x65, 0x2d, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x32, 0x2f,
0x67, 0x65, 0x6e, 0xa2, 0x02, 0x03, 0x53, 0x58, 0x58, 0xaa, 0x02, 0x08, 0x53, 0x69, 0x67, 0x6e,
0x61, 0x6c, 0x65, 0x72, 0xca, 0x02, 0x08, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0xe2,
0x02, 0x14, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65, 0x72, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65,
0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x08, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x65,
0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_signaler_service_proto_rawDescOnce sync.Once
file_signaler_service_proto_rawDescData = file_signaler_service_proto_rawDesc
)
func file_signaler_service_proto_rawDescGZIP() []byte {
file_signaler_service_proto_rawDescOnce.Do(func() {
file_signaler_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_signaler_service_proto_rawDescData)
})
return file_signaler_service_proto_rawDescData
}
var file_signaler_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_signaler_service_proto_msgTypes = make([]protoimpl.MessageInfo, 25)
var file_signaler_service_proto_goTypes = []interface{}{
(Sample_Type)(0), // 0: signaler.Sample.Type
(*CreateAuthTokenRequest)(nil), // 1: signaler.CreateAuthTokenRequest
(*ListCamerasRequest)(nil), // 2: signaler.ListCamerasRequest
(*ListCamerasResponse)(nil), // 3: signaler.ListCamerasResponse
(*CreateSessionRequest)(nil), // 4: signaler.CreateSessionRequest
(*PopSessionRequest)(nil), // 5: signaler.PopSessionRequest
(*UpdateSessionRequest)(nil), // 6: signaler.UpdateSessionRequest
(*ListSessionsRequest)(nil), // 7: signaler.ListSessionsRequest
(*ListSessionsResponse)(nil), // 8: signaler.ListSessionsResponse
(*CreateIceMessageRequest)(nil), // 9: signaler.CreateIceMessageRequest
(*PopIceMessageRequest)(nil), // 10: signaler.PopIceMessageRequest
(*CreateSampleRequest)(nil), // 11: signaler.CreateSampleRequest
(*ListSamplesRequest)(nil), // 12: signaler.ListSamplesRequest
(*ListSamplesResponse)(nil), // 13: signaler.ListSamplesResponse
(*Camera)(nil), // 14: signaler.Camera
(*IceMessage)(nil), // 15: signaler.IceMessage
(*NoMoreCandidates)(nil), // 16: signaler.NoMoreCandidates
(*IceCandidate)(nil), // 17: signaler.IceCandidate
(*IceSessionDescription)(nil), // 18: signaler.IceSessionDescription
(*Session)(nil), // 19: signaler.Session
(*AuthToken)(nil), // 20: signaler.AuthToken
(*Sample)(nil), // 21: signaler.Sample
(*CreateAuthTokenRequest_Camera)(nil), // 22: signaler.CreateAuthTokenRequest.Camera
(*CreateAuthTokenRequest_Client)(nil), // 23: signaler.CreateAuthTokenRequest.Client
(*Camera_Identifier)(nil), // 24: signaler.Camera.Identifier
(*Session_Identifier)(nil), // 25: signaler.Session.Identifier
}
var file_signaler_service_proto_depIdxs = []int32{
22, // 0: signaler.CreateAuthTokenRequest.camera:type_name -> signaler.CreateAuthTokenRequest.Camera
23, // 1: signaler.CreateAuthTokenRequest.client:type_name -> signaler.CreateAuthTokenRequest.Client
14, // 2: signaler.ListCamerasResponse.cameras:type_name -> signaler.Camera
19, // 3: signaler.CreateSessionRequest.session:type_name -> signaler.Session
19, // 4: signaler.PopSessionRequest.session:type_name -> signaler.Session
19, // 5: signaler.UpdateSessionRequest.session:type_name -> signaler.Session
19, // 6: signaler.ListSessionsResponse.sessions:type_name -> signaler.Session
25, // 7: signaler.CreateIceMessageRequest.session_identifier:type_name -> signaler.Session.Identifier
15, // 8: signaler.CreateIceMessageRequest.ice_message:type_name -> signaler.IceMessage
25, // 9: signaler.PopIceMessageRequest.session_identifier:type_name -> signaler.Session.Identifier
21, // 10: signaler.CreateSampleRequest.sample:type_name -> signaler.Sample
21, // 11: signaler.ListSamplesResponse.samples:type_name -> signaler.Sample
24, // 12: signaler.Camera.identifier:type_name -> signaler.Camera.Identifier
17, // 13: signaler.IceMessage.candidate:type_name -> signaler.IceCandidate
18, // 14: signaler.IceMessage.session:type_name -> signaler.IceSessionDescription
16, // 15: signaler.IceMessage.no_more_candidates:type_name -> signaler.NoMoreCandidates
25, // 16: signaler.Session.id:type_name -> signaler.Session.Identifier
24, // 17: signaler.Session.camera:type_name -> signaler.Camera.Identifier
0, // 18: signaler.Sample.type:type_name -> signaler.Sample.Type
24, // 19: signaler.Sample.camera_id:type_name -> signaler.Camera.Identifier
1, // 20: signaler.SignalerService.CreateAuthToken:input_type -> signaler.CreateAuthTokenRequest
2, // 21: signaler.SignalerService.ListCameras:input_type -> signaler.ListCamerasRequest
4, // 22: signaler.SignalerService.CreateSession:input_type -> signaler.CreateSessionRequest
5, // 23: signaler.SignalerService.PopSession:input_type -> signaler.PopSessionRequest
9, // 24: signaler.SignalerService.CreateIceMessage:input_type -> signaler.CreateIceMessageRequest
10, // 25: signaler.SignalerService.PopIceMessage:input_type -> signaler.PopIceMessageRequest
11, // 26: signaler.SignalerService.CreateSample:input_type -> signaler.CreateSampleRequest
12, // 27: signaler.SignalerService.ListSamples:input_type -> signaler.ListSamplesRequest
20, // 28: signaler.SignalerService.CreateAuthToken:output_type -> signaler.AuthToken
3, // 29: signaler.SignalerService.ListCameras:output_type -> signaler.ListCamerasResponse
19, // 30: signaler.SignalerService.CreateSession:output_type -> signaler.Session
19, // 31: signaler.SignalerService.PopSession:output_type -> signaler.Session
15, // 32: signaler.SignalerService.CreateIceMessage:output_type -> signaler.IceMessage
15, // 33: signaler.SignalerService.PopIceMessage:output_type -> signaler.IceMessage
21, // 34: signaler.SignalerService.CreateSample:output_type -> signaler.Sample
13, // 35: signaler.SignalerService.ListSamples:output_type -> signaler.ListSamplesResponse
28, // [28:36] is the sub-list for method output_type
20, // [20:28] is the sub-list for method input_type
20, // [20:20] is the sub-list for extension type_name
20, // [20:20] is the sub-list for extension extendee
0, // [0:20] is the sub-list for field type_name
}
func init() { file_signaler_service_proto_init() }
func file_signaler_service_proto_init() {
if File_signaler_service_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_signaler_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateAuthTokenRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListCamerasRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListCamerasResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateSessionRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PopSessionRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UpdateSessionRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListSessionsRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListSessionsResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateIceMessageRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PopIceMessageRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateSampleRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListSamplesRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListSamplesResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Camera); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IceMessage); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NoMoreCandidates); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IceCandidate); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IceSessionDescription); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Session); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AuthToken); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Sample); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateAuthTokenRequest_Camera); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateAuthTokenRequest_Client); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Camera_Identifier); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_signaler_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Session_Identifier); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
file_signaler_service_proto_msgTypes[0].OneofWrappers = []interface{}{
(*CreateAuthTokenRequest_Camera_)(nil),
(*CreateAuthTokenRequest_Client_)(nil),
}
file_signaler_service_proto_msgTypes[14].OneofWrappers = []interface{}{
(*IceMessage_Candidate)(nil),
(*IceMessage_Session)(nil),
(*IceMessage_NoMoreCandidates)(nil),
}
file_signaler_service_proto_msgTypes[16].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_signaler_service_proto_rawDesc,
NumEnums: 1,
NumMessages: 25,
NumExtensions: 0,
NumServices: 1,
},
GoTypes: file_signaler_service_proto_goTypes,
DependencyIndexes: file_signaler_service_proto_depIdxs,
EnumInfos: file_signaler_service_proto_enumTypes,
MessageInfos: file_signaler_service_proto_msgTypes,
}.Build()
File_signaler_service_proto = out.File
file_signaler_service_proto_rawDesc = nil
file_signaler_service_proto_goTypes = nil
file_signaler_service_proto_depIdxs = nil
}