Merge pull request #51 from sachaaaaa/prekeybundle_type

add PrekeyBundle Type field in SignalService.proto
pull/55/head
sachaaaaa 6 years ago committed by GitHub
commit 6427ba901f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -37,6 +37,13 @@ message Content {
}
message PreKeyBundleMessage {
enum Type {
UNKNOWN = 0;
FRIEND_REQUEST = 1;
FRIEND_REQUEST_ACCEPT = 2;
RESET_SESSION = 3;
RESET_SESSION_ACK = 4;
}
optional bytes identityKey = 1;
optional uint32 deviceId = 2;
optional uint32 preKeyId = 3;
@ -44,6 +51,7 @@ message PreKeyBundleMessage {
optional bytes preKey = 5;
optional bytes signedKey = 6;
optional bytes signature = 7;
optional Type type = 8;
}
message CallMessage {

Loading…
Cancel
Save