Fixup dir structure
This commit is contained in:
parent
4595ad0fc4
commit
eec4c66ef6
20 changed files with 53 additions and 49 deletions
25
protos/IncomingPushMessageSignal.proto
Normal file
25
protos/IncomingPushMessageSignal.proto
Normal file
|
@ -0,0 +1,25 @@
|
|||
package textsecure;
|
||||
|
||||
option java_package = "org.whispersystems.textsecure.push";
|
||||
option java_outer_classname = "PushMessageProtos";
|
||||
|
||||
message IncomingPushMessageSignal {
|
||||
optional uint32 type = 1;
|
||||
optional string source = 2;
|
||||
optional string relay = 3;
|
||||
repeated string destinations = 4;
|
||||
optional uint64 timestamp = 5;
|
||||
optional bytes message = 6; // Contains an encrypted PushMessageContent
|
||||
}
|
||||
|
||||
message PushMessageContent {
|
||||
optional string body = 1;
|
||||
|
||||
message AttachmentPointer {
|
||||
optional fixed64 id = 1;
|
||||
optional string contentType = 2;
|
||||
optional bytes key = 3;
|
||||
}
|
||||
|
||||
repeated AttachmentPointer attachments = 2;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue