loaction and appdata added
This commit is contained in:
		
							
								
								
									
										258
									
								
								messages.pb.go
									
									
									
									
									
								
							
							
						
						
									
										258
									
								
								messages.pb.go
									
									
									
									
									
								
							@@ -1,3 +1,9 @@
 | 
			
		||||
// You should use the field numbers 1 through 15
 | 
			
		||||
// for the most-frequently-set fields.
 | 
			
		||||
// Lower field number values take less space in the wire format.
 | 
			
		||||
// For example, field numbers in the range 1 through 15 take one byte to encode.
 | 
			
		||||
// Field numbers in the range 16 through 2047 take two bytes.
 | 
			
		||||
 | 
			
		||||
// Code generated by protoc-gen-go. DO NOT EDIT.
 | 
			
		||||
// versions:
 | 
			
		||||
// 	protoc-gen-go v1.26.0
 | 
			
		||||
@@ -696,15 +702,17 @@ type UserMessage struct {
 | 
			
		||||
	sizeCache     protoimpl.SizeCache
 | 
			
		||||
	unknownFields protoimpl.UnknownFields
 | 
			
		||||
 | 
			
		||||
	Destination  string                          `protobuf:"bytes,1,opt,name=destination,proto3" json:"destination,omitempty"` // Lookupkey
 | 
			
		||||
	From         string                          `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`               // My public key for that contact
 | 
			
		||||
	Type         string                          `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
 | 
			
		||||
	Data         []byte                          `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
 | 
			
		||||
	Status       *UserMessage_ConversationStatus `protobuf:"bytes,5,opt,name=Status,proto3" json:"Status,omitempty"`
 | 
			
		||||
	Contact      *ContactCard                    `protobuf:"bytes,6,opt,name=contact,proto3" json:"contact,omitempty"`
 | 
			
		||||
	KnownServers *Server                         `protobuf:"bytes,7,opt,name=knownServers,proto3" json:"knownServers,omitempty"`
 | 
			
		||||
	Group        *UserMessage_Group              `protobuf:"bytes,8,opt,name=group,proto3" json:"group,omitempty"`
 | 
			
		||||
	Files        []*File                         `protobuf:"bytes,9,rep,name=files,proto3" json:"files,omitempty"`
 | 
			
		||||
	Destination     string                          `protobuf:"bytes,1,opt,name=destination,proto3" json:"destination,omitempty"` // Lookupkey
 | 
			
		||||
	From            string                          `protobuf:"bytes,2,opt,name=from,proto3" json:"from,omitempty"`               // My public key for that contact
 | 
			
		||||
	Type            string                          `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
 | 
			
		||||
	Data            []byte                          `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
 | 
			
		||||
	Status          *UserMessage_ConversationStatus `protobuf:"bytes,5,opt,name=Status,proto3" json:"Status,omitempty"`
 | 
			
		||||
	Contact         *ContactCard                    `protobuf:"bytes,6,opt,name=contact,proto3" json:"contact,omitempty"`
 | 
			
		||||
	KnownServers    *Server                         `protobuf:"bytes,7,opt,name=knownServers,proto3" json:"knownServers,omitempty"`
 | 
			
		||||
	Group           *UserMessage_Group              `protobuf:"bytes,8,opt,name=group,proto3" json:"group,omitempty"`
 | 
			
		||||
	Files           []*File                         `protobuf:"bytes,9,rep,name=files,proto3" json:"files,omitempty"`
 | 
			
		||||
	CurrentLocation *Location                       `protobuf:"bytes,10,opt,name=currentLocation,proto3" json:"currentLocation,omitempty"`
 | 
			
		||||
	Appdata         []byte                          `protobuf:"bytes,11,opt,name=appdata,proto3" json:"appdata,omitempty"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *UserMessage) Reset() {
 | 
			
		||||
@@ -802,6 +810,20 @@ func (x *UserMessage) GetFiles() []*File {
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *UserMessage) GetCurrentLocation() *Location {
 | 
			
		||||
	if x != nil {
 | 
			
		||||
		return x.CurrentLocation
 | 
			
		||||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *UserMessage) GetAppdata() []byte {
 | 
			
		||||
	if x != nil {
 | 
			
		||||
		return x.Appdata
 | 
			
		||||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type File struct {
 | 
			
		||||
	state         protoimpl.MessageState
 | 
			
		||||
	sizeCache     protoimpl.SizeCache
 | 
			
		||||
@@ -873,6 +895,77 @@ func (x *File) GetData() []byte {
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type Location struct {
 | 
			
		||||
	state         protoimpl.MessageState
 | 
			
		||||
	sizeCache     protoimpl.SizeCache
 | 
			
		||||
	unknownFields protoimpl.UnknownFields
 | 
			
		||||
 | 
			
		||||
	Time      uint64  `protobuf:"varint,1,opt,name=time,proto3" json:"time,omitempty"`
 | 
			
		||||
	Latitude  float32 `protobuf:"fixed32,2,opt,name=latitude,proto3" json:"latitude,omitempty"`
 | 
			
		||||
	Longitude float32 `protobuf:"fixed32,3,opt,name=longitude,proto3" json:"longitude,omitempty"`
 | 
			
		||||
	Altitude  int32   `protobuf:"varint,4,opt,name=altitude,proto3" json:"altitude,omitempty"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *Location) Reset() {
 | 
			
		||||
	*x = Location{}
 | 
			
		||||
	if protoimpl.UnsafeEnabled {
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[10]
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		ms.StoreMessageInfo(mi)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *Location) String() string {
 | 
			
		||||
	return protoimpl.X.MessageStringOf(x)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (*Location) ProtoMessage() {}
 | 
			
		||||
 | 
			
		||||
func (x *Location) ProtoReflect() protoreflect.Message {
 | 
			
		||||
	mi := &file_messages_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 Location.ProtoReflect.Descriptor instead.
 | 
			
		||||
func (*Location) Descriptor() ([]byte, []int) {
 | 
			
		||||
	return file_messages_proto_rawDescGZIP(), []int{10}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *Location) GetTime() uint64 {
 | 
			
		||||
	if x != nil {
 | 
			
		||||
		return x.Time
 | 
			
		||||
	}
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *Location) GetLatitude() float32 {
 | 
			
		||||
	if x != nil {
 | 
			
		||||
		return x.Latitude
 | 
			
		||||
	}
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *Location) GetLongitude() float32 {
 | 
			
		||||
	if x != nil {
 | 
			
		||||
		return x.Longitude
 | 
			
		||||
	}
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (x *Location) GetAltitude() int32 {
 | 
			
		||||
	if x != nil {
 | 
			
		||||
		return x.Altitude
 | 
			
		||||
	}
 | 
			
		||||
	return 0
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// structure for requesting incoming messages
 | 
			
		||||
type ToServerMessage_ConversationRequest struct {
 | 
			
		||||
	state         protoimpl.MessageState
 | 
			
		||||
@@ -888,7 +981,7 @@ type ToServerMessage_ConversationRequest struct {
 | 
			
		||||
func (x *ToServerMessage_ConversationRequest) Reset() {
 | 
			
		||||
	*x = ToServerMessage_ConversationRequest{}
 | 
			
		||||
	if protoimpl.UnsafeEnabled {
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[10]
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[11]
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		ms.StoreMessageInfo(mi)
 | 
			
		||||
	}
 | 
			
		||||
@@ -901,7 +994,7 @@ func (x *ToServerMessage_ConversationRequest) String() string {
 | 
			
		||||
func (*ToServerMessage_ConversationRequest) ProtoMessage() {}
 | 
			
		||||
 | 
			
		||||
func (x *ToServerMessage_ConversationRequest) ProtoReflect() protoreflect.Message {
 | 
			
		||||
	mi := &file_messages_proto_msgTypes[10]
 | 
			
		||||
	mi := &file_messages_proto_msgTypes[11]
 | 
			
		||||
	if protoimpl.UnsafeEnabled && x != nil {
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		if ms.LoadMessageInfo() == nil {
 | 
			
		||||
@@ -956,7 +1049,7 @@ type FromServerMessage_ConversationResponse struct {
 | 
			
		||||
func (x *FromServerMessage_ConversationResponse) Reset() {
 | 
			
		||||
	*x = FromServerMessage_ConversationResponse{}
 | 
			
		||||
	if protoimpl.UnsafeEnabled {
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[11]
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[12]
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		ms.StoreMessageInfo(mi)
 | 
			
		||||
	}
 | 
			
		||||
@@ -969,7 +1062,7 @@ func (x *FromServerMessage_ConversationResponse) String() string {
 | 
			
		||||
func (*FromServerMessage_ConversationResponse) ProtoMessage() {}
 | 
			
		||||
 | 
			
		||||
func (x *FromServerMessage_ConversationResponse) ProtoReflect() protoreflect.Message {
 | 
			
		||||
	mi := &file_messages_proto_msgTypes[11]
 | 
			
		||||
	mi := &file_messages_proto_msgTypes[12]
 | 
			
		||||
	if protoimpl.UnsafeEnabled && x != nil {
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		if ms.LoadMessageInfo() == nil {
 | 
			
		||||
@@ -1009,7 +1102,7 @@ type UserMessage_ConversationStatus struct {
 | 
			
		||||
func (x *UserMessage_ConversationStatus) Reset() {
 | 
			
		||||
	*x = UserMessage_ConversationStatus{}
 | 
			
		||||
	if protoimpl.UnsafeEnabled {
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[12]
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[13]
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		ms.StoreMessageInfo(mi)
 | 
			
		||||
	}
 | 
			
		||||
@@ -1022,7 +1115,7 @@ func (x *UserMessage_ConversationStatus) String() string {
 | 
			
		||||
func (*UserMessage_ConversationStatus) ProtoMessage() {}
 | 
			
		||||
 | 
			
		||||
func (x *UserMessage_ConversationStatus) ProtoReflect() protoreflect.Message {
 | 
			
		||||
	mi := &file_messages_proto_msgTypes[12]
 | 
			
		||||
	mi := &file_messages_proto_msgTypes[13]
 | 
			
		||||
	if protoimpl.UnsafeEnabled && x != nil {
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		if ms.LoadMessageInfo() == nil {
 | 
			
		||||
@@ -1099,7 +1192,7 @@ type UserMessage_Group struct {
 | 
			
		||||
func (x *UserMessage_Group) Reset() {
 | 
			
		||||
	*x = UserMessage_Group{}
 | 
			
		||||
	if protoimpl.UnsafeEnabled {
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[13]
 | 
			
		||||
		mi := &file_messages_proto_msgTypes[14]
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		ms.StoreMessageInfo(mi)
 | 
			
		||||
	}
 | 
			
		||||
@@ -1112,7 +1205,7 @@ func (x *UserMessage_Group) String() string {
 | 
			
		||||
func (*UserMessage_Group) ProtoMessage() {}
 | 
			
		||||
 | 
			
		||||
func (x *UserMessage_Group) ProtoReflect() protoreflect.Message {
 | 
			
		||||
	mi := &file_messages_proto_msgTypes[13]
 | 
			
		||||
	mi := &file_messages_proto_msgTypes[14]
 | 
			
		||||
	if protoimpl.UnsafeEnabled && x != nil {
 | 
			
		||||
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
			
		||||
		if ms.LoadMessageInfo() == nil {
 | 
			
		||||
@@ -1264,7 +1357,7 @@ var file_messages_proto_rawDesc = []byte{
 | 
			
		||||
	0x01, 0x28, 0x0c, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x28,
 | 
			
		||||
	0x0a, 0x0f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
 | 
			
		||||
	0x70, 0x18, 0x04, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x54,
 | 
			
		||||
	0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xce, 0x05, 0x0a, 0x0b, 0x55, 0x73, 0x65,
 | 
			
		||||
	0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xa5, 0x06, 0x0a, 0x0b, 0x55, 0x73, 0x65,
 | 
			
		||||
	0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x74,
 | 
			
		||||
	0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
 | 
			
		||||
	0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72,
 | 
			
		||||
@@ -1287,38 +1380,51 @@ var file_messages_proto_rawDesc = []byte{
 | 
			
		||||
	0x65, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x23,
 | 
			
		||||
	0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
 | 
			
		||||
	0x6d, 0x65, 0x6f, 0x77, 0x6c, 0x69, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69,
 | 
			
		||||
	0x6c, 0x65, 0x73, 0x1a, 0x96, 0x02, 0x0a, 0x12, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61,
 | 
			
		||||
	0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x6f,
 | 
			
		||||
	0x63, 0x61, 0x6c, 0x55, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c,
 | 
			
		||||
	0x6f, 0x63, 0x61, 0x6c, 0x55, 0x75, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61,
 | 
			
		||||
	0x6c, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
 | 
			
		||||
	0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x12,
 | 
			
		||||
	0x0a, 0x04, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x65,
 | 
			
		||||
	0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x18, 0x04,
 | 
			
		||||
	0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x12, 0x1c,
 | 
			
		||||
	0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
 | 
			
		||||
	0x04, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x3c, 0x0a, 0x0e,
 | 
			
		||||
	0x6d, 0x79, 0x4e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, 0x06,
 | 
			
		||||
	0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x65, 0x6f, 0x77, 0x6c, 0x69, 0x62, 0x2e, 0x43,
 | 
			
		||||
	0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x43, 0x61, 0x72, 0x64, 0x52, 0x0e, 0x6d, 0x79, 0x4e, 0x65,
 | 
			
		||||
	0x78, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x65,
 | 
			
		||||
	0x65, 0x72, 0x4e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x41, 0x63,
 | 
			
		||||
	0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x70, 0x65, 0x65, 0x72, 0x4e, 0x65, 0x78,
 | 
			
		||||
	0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x41, 0x63, 0x6b, 0x1a, 0x4b, 0x0a, 0x05,
 | 
			
		||||
	0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
 | 
			
		||||
	0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x07, 0x6d, 0x65, 0x6d,
 | 
			
		||||
	0x62, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x65, 0x6f,
 | 
			
		||||
	0x77, 0x6c, 0x69, 0x62, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x43, 0x61, 0x72, 0x64,
 | 
			
		||||
	0x52, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x22, 0x60, 0x0a, 0x04, 0x46, 0x69, 0x6c,
 | 
			
		||||
	0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
 | 
			
		||||
	0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a,
 | 
			
		||||
	0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x69, 0x7a,
 | 
			
		||||
	0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
 | 
			
		||||
	0x52, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
 | 
			
		||||
	0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x42, 0x21, 0x5a, 0x1f, 0x66,
 | 
			
		||||
	0x6f, 0x72, 0x67, 0x65, 0x2e, 0x72, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x6c, 0x69, 0x6e,
 | 
			
		||||
	0x6b, 0x2f, 0x79, 0x76, 0x65, 0x73, 0x2f, 0x6d, 0x65, 0x6f, 0x77, 0x6c, 0x69, 0x62, 0x62, 0x06,
 | 
			
		||||
	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 | 
			
		||||
	0x6c, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4c, 0x6f,
 | 
			
		||||
	0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d,
 | 
			
		||||
	0x65, 0x6f, 0x77, 0x6c, 0x69, 0x62, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
 | 
			
		||||
	0x0f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
 | 
			
		||||
	0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x64, 0x61, 0x74, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28,
 | 
			
		||||
	0x0c, 0x52, 0x07, 0x61, 0x70, 0x70, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x96, 0x02, 0x0a, 0x12, 0x43,
 | 
			
		||||
	0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75,
 | 
			
		||||
	0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x75, 0x69, 0x64, 0x18, 0x01,
 | 
			
		||||
	0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x75, 0x69, 0x64, 0x12,
 | 
			
		||||
	0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
 | 
			
		||||
	0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x71,
 | 
			
		||||
	0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20,
 | 
			
		||||
	0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x63,
 | 
			
		||||
	0x65, 0x69, 0x76, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x72, 0x65, 0x63,
 | 
			
		||||
	0x65, 0x69, 0x76, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
 | 
			
		||||
	0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
 | 
			
		||||
	0x73, 0x65, 0x64, 0x12, 0x3c, 0x0a, 0x0e, 0x6d, 0x79, 0x4e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x65,
 | 
			
		||||
	0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x65,
 | 
			
		||||
	0x6f, 0x77, 0x6c, 0x69, 0x62, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x43, 0x61, 0x72,
 | 
			
		||||
	0x64, 0x52, 0x0e, 0x6d, 0x79, 0x4e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74,
 | 
			
		||||
	0x79, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x65, 0x65, 0x72, 0x4e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x65,
 | 
			
		||||
	0x6e, 0x74, 0x69, 0x74, 0x79, 0x41, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13,
 | 
			
		||||
	0x70, 0x65, 0x65, 0x72, 0x4e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79,
 | 
			
		||||
	0x41, 0x63, 0x6b, 0x1a, 0x4b, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x12, 0x0a, 0x04,
 | 
			
		||||
	0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
 | 
			
		||||
	0x12, 0x2e, 0x0a, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
 | 
			
		||||
	0x0b, 0x32, 0x14, 0x2e, 0x6d, 0x65, 0x6f, 0x77, 0x6c, 0x69, 0x62, 0x2e, 0x43, 0x6f, 0x6e, 0x74,
 | 
			
		||||
	0x61, 0x63, 0x74, 0x43, 0x61, 0x72, 0x64, 0x52, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
 | 
			
		||||
	0x22, 0x60, 0x0a, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65,
 | 
			
		||||
	0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65,
 | 
			
		||||
	0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
 | 
			
		||||
	0x28, 0x04, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x68, 0x75, 0x6e,
 | 
			
		||||
	0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x12, 0x12,
 | 
			
		||||
	0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61,
 | 
			
		||||
	0x74, 0x61, 0x22, 0x74, 0x0a, 0x08, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12,
 | 
			
		||||
	0x0a, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x74, 0x69,
 | 
			
		||||
	0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x02,
 | 
			
		||||
	0x20, 0x01, 0x28, 0x02, 0x52, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x12, 0x1c,
 | 
			
		||||
	0x0a, 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
 | 
			
		||||
	0x02, 0x52, 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08,
 | 
			
		||||
	0x61, 0x6c, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
 | 
			
		||||
	0x61, 0x6c, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x42, 0x21, 0x5a, 0x1f, 0x66, 0x6f, 0x72, 0x67,
 | 
			
		||||
	0x65, 0x2e, 0x72, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x2e, 0x6c, 0x69, 0x6e, 0x6b, 0x2f, 0x79,
 | 
			
		||||
	0x76, 0x65, 0x73, 0x2f, 0x6d, 0x65, 0x6f, 0x77, 0x6c, 0x69, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f,
 | 
			
		||||
	0x74, 0x6f, 0x33,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var (
 | 
			
		||||
@@ -1333,7 +1439,7 @@ func file_messages_proto_rawDescGZIP() []byte {
 | 
			
		||||
	return file_messages_proto_rawDescData
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var file_messages_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
 | 
			
		||||
var file_messages_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
 | 
			
		||||
var file_messages_proto_goTypes = []interface{}{
 | 
			
		||||
	(*PackedServerMessage)(nil),                    // 0: meowlib.PackedServerMessage
 | 
			
		||||
	(*ToServerMessage)(nil),                        // 1: meowlib.ToServerMessage
 | 
			
		||||
@@ -1345,13 +1451,14 @@ var file_messages_proto_goTypes = []interface{}{
 | 
			
		||||
	(*PackedUserMessage)(nil),                      // 7: meowlib.PackedUserMessage
 | 
			
		||||
	(*UserMessage)(nil),                            // 8: meowlib.UserMessage
 | 
			
		||||
	(*File)(nil),                                   // 9: meowlib.File
 | 
			
		||||
	(*ToServerMessage_ConversationRequest)(nil),    // 10: meowlib.ToServerMessage.ConversationRequest
 | 
			
		||||
	(*FromServerMessage_ConversationResponse)(nil), // 11: meowlib.FromServerMessage.ConversationResponse
 | 
			
		||||
	(*UserMessage_ConversationStatus)(nil),         // 12: meowlib.UserMessage.ConversationStatus
 | 
			
		||||
	(*UserMessage_Group)(nil),                      // 13: meowlib.UserMessage.Group
 | 
			
		||||
	(*Location)(nil),                               // 10: meowlib.Location
 | 
			
		||||
	(*ToServerMessage_ConversationRequest)(nil),    // 11: meowlib.ToServerMessage.ConversationRequest
 | 
			
		||||
	(*FromServerMessage_ConversationResponse)(nil), // 12: meowlib.FromServerMessage.ConversationResponse
 | 
			
		||||
	(*UserMessage_ConversationStatus)(nil),         // 13: meowlib.UserMessage.ConversationStatus
 | 
			
		||||
	(*UserMessage_Group)(nil),                      // 14: meowlib.UserMessage.Group
 | 
			
		||||
}
 | 
			
		||||
var file_messages_proto_depIdxs = []int32{
 | 
			
		||||
	10, // 0: meowlib.ToServerMessage.pullRequest:type_name -> meowlib.ToServerMessage.ConversationRequest
 | 
			
		||||
	11, // 0: meowlib.ToServerMessage.pullRequest:type_name -> meowlib.ToServerMessage.ConversationRequest
 | 
			
		||||
	7,  // 1: meowlib.ToServerMessage.messages:type_name -> meowlib.PackedUserMessage
 | 
			
		||||
	5,  // 2: meowlib.ToServerMessage.knownServers:type_name -> meowlib.Server
 | 
			
		||||
	4,  // 3: meowlib.ToServerMessage.matriochkaMessage:type_name -> meowlib.Matriochka
 | 
			
		||||
@@ -1360,18 +1467,19 @@ var file_messages_proto_depIdxs = []int32{
 | 
			
		||||
	3,  // 6: meowlib.Matriochka.prev:type_name -> meowlib.MatriochkaServer
 | 
			
		||||
	3,  // 7: meowlib.Matriochka.next:type_name -> meowlib.MatriochkaServer
 | 
			
		||||
	5,  // 8: meowlib.ContactCard.pullServers:type_name -> meowlib.Server
 | 
			
		||||
	12, // 9: meowlib.UserMessage.Status:type_name -> meowlib.UserMessage.ConversationStatus
 | 
			
		||||
	13, // 9: meowlib.UserMessage.Status:type_name -> meowlib.UserMessage.ConversationStatus
 | 
			
		||||
	6,  // 10: meowlib.UserMessage.contact:type_name -> meowlib.ContactCard
 | 
			
		||||
	5,  // 11: meowlib.UserMessage.knownServers:type_name -> meowlib.Server
 | 
			
		||||
	13, // 12: meowlib.UserMessage.group:type_name -> meowlib.UserMessage.Group
 | 
			
		||||
	14, // 12: meowlib.UserMessage.group:type_name -> meowlib.UserMessage.Group
 | 
			
		||||
	9,  // 13: meowlib.UserMessage.files:type_name -> meowlib.File
 | 
			
		||||
	6,  // 14: meowlib.UserMessage.ConversationStatus.myNextIdentity:type_name -> meowlib.ContactCard
 | 
			
		||||
	6,  // 15: meowlib.UserMessage.Group.members:type_name -> meowlib.ContactCard
 | 
			
		||||
	16, // [16:16] is the sub-list for method output_type
 | 
			
		||||
	16, // [16:16] is the sub-list for method input_type
 | 
			
		||||
	16, // [16:16] is the sub-list for extension type_name
 | 
			
		||||
	16, // [16:16] is the sub-list for extension extendee
 | 
			
		||||
	0,  // [0:16] is the sub-list for field type_name
 | 
			
		||||
	10, // 14: meowlib.UserMessage.currentLocation:type_name -> meowlib.Location
 | 
			
		||||
	6,  // 15: meowlib.UserMessage.ConversationStatus.myNextIdentity:type_name -> meowlib.ContactCard
 | 
			
		||||
	6,  // 16: meowlib.UserMessage.Group.members:type_name -> meowlib.ContactCard
 | 
			
		||||
	17, // [17:17] is the sub-list for method output_type
 | 
			
		||||
	17, // [17:17] is the sub-list for method input_type
 | 
			
		||||
	17, // [17:17] is the sub-list for extension type_name
 | 
			
		||||
	17, // [17:17] is the sub-list for extension extendee
 | 
			
		||||
	0,  // [0:17] is the sub-list for field type_name
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func init() { file_messages_proto_init() }
 | 
			
		||||
@@ -1501,7 +1609,7 @@ func file_messages_proto_init() {
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		file_messages_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
 | 
			
		||||
			switch v := v.(*ToServerMessage_ConversationRequest); i {
 | 
			
		||||
			switch v := v.(*Location); i {
 | 
			
		||||
			case 0:
 | 
			
		||||
				return &v.state
 | 
			
		||||
			case 1:
 | 
			
		||||
@@ -1513,7 +1621,7 @@ func file_messages_proto_init() {
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		file_messages_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
 | 
			
		||||
			switch v := v.(*FromServerMessage_ConversationResponse); i {
 | 
			
		||||
			switch v := v.(*ToServerMessage_ConversationRequest); i {
 | 
			
		||||
			case 0:
 | 
			
		||||
				return &v.state
 | 
			
		||||
			case 1:
 | 
			
		||||
@@ -1525,7 +1633,7 @@ func file_messages_proto_init() {
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		file_messages_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
 | 
			
		||||
			switch v := v.(*UserMessage_ConversationStatus); i {
 | 
			
		||||
			switch v := v.(*FromServerMessage_ConversationResponse); i {
 | 
			
		||||
			case 0:
 | 
			
		||||
				return &v.state
 | 
			
		||||
			case 1:
 | 
			
		||||
@@ -1537,6 +1645,18 @@ func file_messages_proto_init() {
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		file_messages_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
 | 
			
		||||
			switch v := v.(*UserMessage_ConversationStatus); i {
 | 
			
		||||
			case 0:
 | 
			
		||||
				return &v.state
 | 
			
		||||
			case 1:
 | 
			
		||||
				return &v.sizeCache
 | 
			
		||||
			case 2:
 | 
			
		||||
				return &v.unknownFields
 | 
			
		||||
			default:
 | 
			
		||||
				return nil
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		file_messages_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
 | 
			
		||||
			switch v := v.(*UserMessage_Group); i {
 | 
			
		||||
			case 0:
 | 
			
		||||
				return &v.state
 | 
			
		||||
@@ -1555,7 +1675,7 @@ func file_messages_proto_init() {
 | 
			
		||||
			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 | 
			
		||||
			RawDescriptor: file_messages_proto_rawDesc,
 | 
			
		||||
			NumEnums:      0,
 | 
			
		||||
			NumMessages:   14,
 | 
			
		||||
			NumMessages:   15,
 | 
			
		||||
			NumExtensions: 0,
 | 
			
		||||
			NumServices:   0,
 | 
			
		||||
		},
 | 
			
		||||
 
 | 
			
		||||
@@ -1,3 +1,9 @@
 | 
			
		||||
// You should use the field numbers 1 through 15 
 | 
			
		||||
// for the most-frequently-set fields. 
 | 
			
		||||
// Lower field number values take less space in the wire format. 
 | 
			
		||||
// For example, field numbers in the range 1 through 15 take one byte to encode. 
 | 
			
		||||
// Field numbers in the range 16 through 2047 take two bytes. 
 | 
			
		||||
 | 
			
		||||
syntax = "proto3";
 | 
			
		||||
package meowlib;
 | 
			
		||||
option go_package = "forge.redroom.link/yves/meowlib";
 | 
			
		||||
@@ -126,6 +132,10 @@ message UserMessage {
 | 
			
		||||
    Group group = 8;
 | 
			
		||||
 | 
			
		||||
    repeated File files = 9;
 | 
			
		||||
 | 
			
		||||
    Location currentLocation = 10;
 | 
			
		||||
 | 
			
		||||
    bytes appdata = 11; 
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
message File {
 | 
			
		||||
@@ -134,3 +144,10 @@ message File {
 | 
			
		||||
    uint32 chunk=3;
 | 
			
		||||
    bytes data=4;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
message Location {
 | 
			
		||||
    uint64 time=1;
 | 
			
		||||
    float latitude=2;
 | 
			
		||||
    float longitude=3;
 | 
			
		||||
    int32 altitude=4;
 | 
			
		||||
}
 | 
			
		||||
@@ -3,4 +3,4 @@ protoc -I=. --go_out=.. messages.proto
 | 
			
		||||
mv ../forge.redroom.link/yves/meowlib/messages.pb.go ../
 | 
			
		||||
rm -rf ../forge.redroom.link
 | 
			
		||||
 | 
			
		||||
protoc -I=. --dart_out=../../../flutter/meowlib/lib/ messages.proto
 | 
			
		||||
#protoc -I=. --dart_out=../../../flutter/meowlib/lib/ messages.proto
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user