2013-08-29 17:01:30 -07: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-18 22:45:27 -07:00
|
|
|
optional string relay = 3;
|
|
|
|
repeated string destinations = 4;
|
|
|
|
optional uint64 timestamp = 5;
|
|
|
|
optional bytes message = 6; // Contains an encrypted PushMessageContent
|
2013-09-08 18:19:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
message PushMessageContent {
|
|
|
|
optional string body = 1;
|
2013-08-29 17:01:30 -07:00
|
|
|
|
|
|
|
message AttachmentPointer {
|
2013-09-08 18:19:05 -07:00
|
|
|
optional fixed64 id = 1;
|
|
|
|
optional string contentType = 2;
|
|
|
|
optional bytes key = 3;
|
2013-08-29 17:01:30 -07:00
|
|
|
}
|
|
|
|
|
2013-09-08 18:19:05 -07:00
|
|
|
repeated AttachmentPointer attachments = 2;
|
2013-08-29 17:01:30 -07:00
|
|
|
}
|