2013-08-29 17:01:30 -07:00
|
|
|
package textsecure;
|
|
|
|
|
2014-11-12 11:35:54 -08:00
|
|
|
option java_package = "org.whispersystems.textsecure.internal.push";
|
2013-08-29 17:01:30 -07:00
|
|
|
option java_outer_classname = "PushMessageProtos";
|
|
|
|
|
|
|
|
message IncomingPushMessageSignal {
|
2014-02-14 16:20:47 -08:00
|
|
|
enum Type {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
CIPHERTEXT = 1;
|
|
|
|
KEY_EXCHANGE = 2;
|
|
|
|
PREKEY_BUNDLE = 3;
|
|
|
|
PLAINTEXT = 4;
|
2014-07-25 15:14:29 -07:00
|
|
|
RECEIPT = 5;
|
2014-02-14 16:20:47 -08:00
|
|
|
}
|
|
|
|
optional Type type = 1;
|
|
|
|
optional string source = 2;
|
2014-02-02 19:38:06 -08:00
|
|
|
optional uint32 sourceDevice = 7;
|
2014-02-14 16:20:47 -08:00
|
|
|
optional string relay = 3;
|
|
|
|
optional uint64 timestamp = 5;
|
|
|
|
optional bytes message = 6; // Contains an encrypted PushMessageContent
|
2014-01-14 00:26:43 -08:00
|
|
|
// repeated string destinations = 4; // No longer supported
|
2013-09-08 18:19:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
message PushMessageContent {
|
2013-08-29 17:01:30 -07:00
|
|
|
message AttachmentPointer {
|
2014-02-19 13:46:49 -08:00
|
|
|
optional fixed64 id = 1;
|
|
|
|
optional string contentType = 2;
|
|
|
|
optional bytes key = 3;
|
2013-08-29 17:01:30 -07:00
|
|
|
}
|
|
|
|
|
2014-01-14 00:26:43 -08:00
|
|
|
message GroupContext {
|
|
|
|
enum Type {
|
|
|
|
UNKNOWN = 0;
|
2014-02-21 17:51:25 -08:00
|
|
|
UPDATE = 1;
|
|
|
|
DELIVER = 2;
|
|
|
|
QUIT = 3;
|
2014-01-14 00:26:43 -08:00
|
|
|
}
|
2014-02-19 13:46:49 -08:00
|
|
|
optional bytes id = 1;
|
|
|
|
optional Type type = 2;
|
|
|
|
optional string name = 3;
|
|
|
|
repeated string members = 4;
|
|
|
|
optional AttachmentPointer avatar = 5;
|
2014-01-14 00:26:43 -08:00
|
|
|
}
|
|
|
|
|
2014-02-19 13:46:49 -08:00
|
|
|
enum Flags {
|
|
|
|
END_SESSION = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
optional string body = 1;
|
2013-09-08 18:19:05 -07:00
|
|
|
repeated AttachmentPointer attachments = 2;
|
2014-02-19 13:46:49 -08:00
|
|
|
optional GroupContext group = 3;
|
|
|
|
optional uint32 flags = 4;
|
2013-08-29 17:01:30 -07:00
|
|
|
}
|