You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			224 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Protocol Buffer
		
	
		
		
			
		
	
	
			224 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Protocol Buffer
		
	
| 
											8 years ago
										 | // Source: https://github.com/signalapp/libsignal-service-java/blob/4684a49b2ed8f32be619e0d0eea423626b6cb2cb/protobuf/SignalService.proto
 | ||
|  | package signalservice;
 | ||
| 
											12 years ago
										 | 
 | ||
| 
											8 years ago
										 | option java_package = "org.whispersystems.signalservice.internal.push";
 | ||
|  | option java_outer_classname = "SignalServiceProtos";
 | ||
| 
											12 years ago
										 | 
 | ||
| 
											11 years ago
										 | message Envelope {
 | ||
| 
											12 years ago
										 |   enum Type {
 | ||
| 
											11 years ago
										 |     UNKNOWN       = 0;
 | ||
|  |     CIPHERTEXT    = 1;
 | ||
|  |     KEY_EXCHANGE  = 2;
 | ||
|  |     PREKEY_BUNDLE = 3;
 | ||
|  |     RECEIPT       = 5;
 | ||
| 
											12 years ago
										 |   }
 | ||
|  | 
 | ||
| 
											11 years ago
										 |   optional Type   type          = 1;
 | ||
|  |   optional string source        = 2;
 | ||
|  |   optional uint32 sourceDevice  = 7;
 | ||
|  |   optional string relay         = 3;
 | ||
|  |   optional uint64 timestamp     = 5;
 | ||
|  |   optional bytes  legacyMessage = 6; // Contains an encrypted DataMessage
 | ||
|  |   optional bytes  content       = 8; // Contains an encrypted Content
 | ||
|  | }
 | ||
| 
											12 years ago
										 | 
 | ||
| 
											11 years ago
										 | message Content {
 | ||
| 
											8 years ago
										 |   optional DataMessage    dataMessage    = 1;
 | ||
|  |   optional SyncMessage    syncMessage    = 2;
 | ||
|  |   optional CallMessage    callMessage    = 3;
 | ||
|  |   optional NullMessage    nullMessage    = 4;
 | ||
| 
											8 years ago
										 |   optional ReceiptMessage receiptMessage = 5;
 | ||
|  | }
 | ||
|  | 
 | ||
| 
											9 years ago
										 | message CallMessage {
 | ||
|  |   message Offer {
 | ||
|  |     optional uint64 id          = 1;
 | ||
|  |     optional string description = 2;
 | ||
|  |   }
 | ||
|  | 
 | ||
|  |   message Answer {
 | ||
|  |     optional uint64 id          = 1;
 | ||
|  |     optional string description = 2;
 | ||
|  |   }
 | ||
|  | 
 | ||
|  |   message IceUpdate {
 | ||
|  |     optional uint64 id            = 1;
 | ||
|  |     optional string sdpMid        = 2;
 | ||
|  |     optional uint32 sdpMLineIndex = 3;
 | ||
|  |     optional string sdp           = 4;
 | ||
|  |   }
 | ||
|  | 
 | ||
|  |   message Busy {
 | ||
|  |     optional uint64 id = 1;
 | ||
|  |   }
 | ||
|  | 
 | ||
|  |   message Hangup {
 | ||
|  |     optional uint64 id = 1;
 | ||
|  |   }
 | ||
|  | 
 | ||
|  | 
 | ||
|  |   optional Offer     offer     = 1;
 | ||
|  |   optional Answer    answer    = 2;
 | ||
|  |   repeated IceUpdate iceUpdate = 3;
 | ||
|  |   optional Hangup    hangup    = 4;
 | ||
|  |   optional Busy      busy      = 5;
 | ||
| 
											11 years ago
										 | }
 | ||
| 
											11 years ago
										 | 
 | ||
| 
											11 years ago
										 | message DataMessage {
 | ||
| 
											12 years ago
										 |   enum Flags {
 | ||
| 
											8 years ago
										 |     END_SESSION             = 1;
 | ||
| 
											9 years ago
										 |     EXPIRATION_TIMER_UPDATE = 2;
 | ||
| 
											8 years ago
										 |     PROFILE_KEY_UPDATE      = 4;
 | ||
| 
											12 years ago
										 |   }
 | ||
|  | 
 | ||
| 
											11 years ago
										 |   optional string             body        = 1;
 | ||
|  |   repeated AttachmentPointer  attachments = 2;
 | ||
|  |   optional GroupContext       group       = 3;
 | ||
|  |   optional uint32             flags       = 4;
 | ||
| 
											9 years ago
										 |   optional uint32             expireTimer = 5;
 | ||
| 
											8 years ago
										 |   optional bytes              profileKey  = 6;
 | ||
| 
											8 years ago
										 |   optional uint64             timestamp   = 7;
 | ||
|  | }
 | ||
|  | 
 | ||
|  | message NullMessage {
 | ||
|  |   optional bytes padding = 1;
 | ||
|  | }
 | ||
|  | 
 | ||
|  | message ReceiptMessage {
 | ||
|  |   enum Type {
 | ||
|  |     DELIVERY = 0;
 | ||
|  |     READ     = 1;
 | ||
|  |   }
 | ||
|  | 
 | ||
|  |   optional Type   type      = 1;
 | ||
|  |   repeated uint64 timestamp = 2;
 | ||
|  | }
 | ||
|  | 
 | ||
|  | message Verified {
 | ||
|  |   enum State {
 | ||
|  |     DEFAULT    = 0;
 | ||
|  |     VERIFIED   = 1;
 | ||
|  |     UNVERIFIED = 2;
 | ||
|  |   }
 | ||
|  | 
 | ||
|  |   optional string destination = 1;
 | ||
|  |   optional bytes  identityKey = 2;
 | ||
|  |   optional State  state       = 3;
 | ||
|  |   optional bytes  nullMessage = 4;
 | ||
| 
											11 years ago
										 | }
 | ||
|  | 
 | ||
|  | message SyncMessage {
 | ||
|  |   message Sent {
 | ||
| 
											9 years ago
										 |     optional string      destination              = 1;
 | ||
|  |     optional uint64      timestamp                = 2;
 | ||
|  |     optional DataMessage message                  = 3;
 | ||
|  |     optional uint64      expirationStartTimestamp = 4;
 | ||
| 
											11 years ago
										 |   }
 | ||
|  | 
 | ||
|  |   message Contacts {
 | ||
| 
											8 years ago
										 |     optional AttachmentPointer blob     = 1;
 | ||
| 
											8 years ago
										 |     optional bool              complete = 2 [default = false];
 | ||
| 
											11 years ago
										 |   }
 | ||
|  | 
 | ||
| 
											11 years ago
										 |   message Groups {
 | ||
|  |     optional AttachmentPointer blob = 1;
 | ||
| 
											11 years ago
										 |   }
 | ||
|  | 
 | ||
| 
											9 years ago
										 |   message Blocked {
 | ||
|  |     repeated string numbers = 1;
 | ||
|  |   }
 | ||
|  | 
 | ||
| 
											11 years ago
										 |   message Request {
 | ||
|  |     enum Type {
 | ||
| 
											8 years ago
										 |       UNKNOWN       = 0;
 | ||
|  |       CONTACTS      = 1;
 | ||
|  |       GROUPS        = 2;
 | ||
|  |       BLOCKED       = 3;
 | ||
|  |       CONFIGURATION = 4;
 | ||
| 
											11 years ago
										 |     }
 | ||
| 
											9 years ago
										 | 
 | ||
| 
											11 years ago
										 |     optional Type type = 1;
 | ||
|  |   }
 | ||
| 
											9 years ago
										 | 
 | ||
| 
											10 years ago
										 |   message Read {
 | ||
|  |     optional string sender    = 1;
 | ||
|  |     optional uint64 timestamp = 2;
 | ||
|  |   }
 | ||
| 
											11 years ago
										 | 
 | ||
| 
											8 years ago
										 |   message Configuration {
 | ||
| 
											8 years ago
										 |     optional bool readReceipts = 1;
 | ||
|  |   }
 | ||
|  | 
 | ||
| 
											8 years ago
										 |   optional Sent          sent          = 1;
 | ||
|  |   optional Contacts      contacts      = 2;
 | ||
|  |   optional Groups        groups        = 3;
 | ||
|  |   optional Request       request       = 4;
 | ||
|  |   repeated Read          read          = 5;
 | ||
|  |   optional Blocked       blocked       = 6;
 | ||
|  |   optional Verified      verified      = 7;
 | ||
|  |   optional Configuration configuration = 9;
 | ||
|  |   optional bytes         padding       = 8;
 | ||
| 
											11 years ago
										 | }
 | ||
|  | 
 | ||
|  | message AttachmentPointer {
 | ||
| 
											9 years ago
										 |   enum Flags {
 | ||
|  |     VOICE_MESSAGE = 1;
 | ||
|  |   }
 | ||
| 
											9 years ago
										 | 
 | ||
| 
											11 years ago
										 |   optional fixed64 id          = 1;
 | ||
|  |   optional string  contentType = 2;
 | ||
|  |   optional bytes   key         = 3;
 | ||
| 
											9 years ago
										 |   optional uint32  size        = 4;
 | ||
|  |   optional bytes   thumbnail   = 5;
 | ||
|  |   optional bytes   digest      = 6;
 | ||
| 
											9 years ago
										 |   optional string  fileName    = 7;
 | ||
| 
											9 years ago
										 |   optional uint32  flags       = 8;
 | ||
| 
											8 years ago
										 |   optional uint32  width       = 9;
 | ||
|  |   optional uint32  height      = 10;
 | ||
| 
											11 years ago
										 | }
 | ||
|  | 
 | ||
|  | message GroupContext {
 | ||
|  |   enum Type {
 | ||
| 
											9 years ago
										 |     UNKNOWN      = 0;
 | ||
|  |     UPDATE       = 1;
 | ||
|  |     DELIVER      = 2;
 | ||
|  |     QUIT         = 3;
 | ||
|  |     REQUEST_INFO = 4;
 | ||
| 
											11 years ago
										 |   }
 | ||
|  |   optional bytes             id      = 1;
 | ||
|  |   optional Type              type    = 2;
 | ||
|  |   optional string            name    = 3;
 | ||
|  |   repeated string            members = 4;
 | ||
|  |   optional AttachmentPointer avatar  = 5;
 | ||
|  | }
 | ||
|  | 
 | ||
| 
											9 years ago
										 | message ContactDetails {
 | ||
| 
											9 years ago
										 |   message Avatar {
 | ||
|  |     optional string contentType = 1;
 | ||
|  |     optional uint32 length      = 2;
 | ||
|  |   }
 | ||
|  | 
 | ||
| 
											8 years ago
										 |   optional string   number      = 1;
 | ||
|  |   optional string   name        = 2;
 | ||
|  |   optional Avatar   avatar      = 3;
 | ||
|  |   optional string   color       = 4;
 | ||
|  |   optional Verified verified    = 5;
 | ||
|  |   optional bytes    profileKey  = 6;
 | ||
|  |   optional bool     blocked     = 7;
 | ||
|  |   optional uint32   expireTimer = 8;
 | ||
| 
											11 years ago
										 | }
 | ||
|  | 
 | ||
| 
											9 years ago
										 | message GroupDetails {
 | ||
| 
											9 years ago
										 |   message Avatar {
 | ||
|  |     optional string contentType = 1;
 | ||
|  |     optional uint32 length      = 2;
 | ||
|  |   }
 | ||
|  | 
 | ||
| 
											8 years ago
										 |   optional bytes  id          = 1;
 | ||
|  |   optional string name        = 2;
 | ||
|  |   repeated string members     = 3;
 | ||
|  |   optional Avatar avatar      = 4;
 | ||
|  |   optional bool   active      = 5 [default = true];
 | ||
|  |   optional uint32 expireTimer = 6;
 | ||
| 
											11 years ago
										 | }
 |