Include room_id
in CallCanceled
message
This ensures we don't accidentally cancel old calls.
This commit is contained in:
parent
e2b132ef23
commit
0220d7ba5d
4 changed files with 47 additions and 14 deletions
|
@ -212,7 +212,9 @@ message IncomingCall {
|
|||
optional ParticipantProject initial_project = 4;
|
||||
}
|
||||
|
||||
message CallCanceled {}
|
||||
message CallCanceled {
|
||||
uint64 room_id = 1;
|
||||
}
|
||||
|
||||
message CancelCall {
|
||||
uint64 room_id = 1;
|
||||
|
|
|
@ -6,4 +6,4 @@ pub use conn::Connection;
|
|||
pub use peer::*;
|
||||
mod macros;
|
||||
|
||||
pub const PROTOCOL_VERSION: u32 = 40;
|
||||
pub const PROTOCOL_VERSION: u32 = 41;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue