feat: add voice call proto

This commit is contained in:
Kingtous
2023-02-05 23:47:06 +08:00
parent b335d2c828
commit 45b93100d6
7 changed files with 138 additions and 69 deletions

View File

@@ -1572,6 +1572,12 @@ impl Connection {
allow_err!(self.audio_sender.send(MediaData::AudioFrame(frame)));
}
}
Some(message::Union::VoiceCallRequest(request)) => {
// TODO
}
Some(message::Union::VoiceCallResponse(response)) => {
// TODO
}
_ => {}
}
}