2013-08-30 00:01:30 +00:00
|
|
|
package textsecure;
|
|
|
|
|
|
|
|
option java_package = "org.whispersystems.textsecure.push";
|
|
|
|
option java_outer_classname = "PushMessageProtos";
|
|
|
|
|
|
|
|
message IncomingPushMessageSignal {
|
|
|
|
optional uint32 type = 1;
|
|
|
|
optional string source = 2;
|
2013-10-19 05:45:27 +00:00
|
|
|
optional string relay = 3;
|
|
|
|
repeated string destinations = 4;
|
|
|
|
optional uint64 timestamp = 5;
|
|
|
|
optional bytes message = 6; // Contains an encrypted PushMessageContent
|
2013-09-09 01:19:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message PushMessageContent {
|
|
|
|
optional string body = 1;
|
2013-08-30 00:01:30 +00:00
|
|
|
|
|
|
|
message AttachmentPointer {
|
2013-09-09 01:19:05 +00:00
|
|
|
optional fixed64 id = 1;
|
|
|
|
optional string contentType = 2;
|
|
|
|
optional bytes key = 3;
|
2013-08-30 00:01:30 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 01:19:05 +00:00
|
|
|
repeated AttachmentPointer attachments = 2;
|
2013-08-30 00:01:30 +00:00
|
|
|
}
|