Added IceCandidate tranpsort type
This commit is contained in:
parent
0765f70fa7
commit
e8aa877f2a
1 changed files with 2 additions and 1 deletions
|
@ -15,13 +15,14 @@ use tokio_tungstenite::{connect_async, tungstenite::Message, MaybeTlsStream, Web
|
||||||
use tokio_tungstenite::tungstenite::error::Error as tungstenite_error;
|
use tokio_tungstenite::tungstenite::error::Error as tungstenite_error;
|
||||||
use tracing::{error, info, debug, instrument};
|
use tracing::{error, info, debug, instrument};
|
||||||
use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
|
use webrtc::peer_connection::sdp::session_description::RTCSessionDescription;
|
||||||
|
use webrtc::ice_transport::ice_candidate::RTCIceCandidate;
|
||||||
|
|
||||||
static MAX_MESSAGE: usize = 50;
|
static MAX_MESSAGE: usize = 50;
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Clone)]
|
#[derive(Serialize, Deserialize, Clone)]
|
||||||
pub enum ApplicationMessage {
|
pub enum ApplicationMessage {
|
||||||
WebRTCPacket(RTCSessionDescription),
|
WebRTCPacket(RTCSessionDescription),
|
||||||
|
WebRTCIceCandidate(RTCIceCandidate),
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type AppSender = Sender<ApplicationMessage>;
|
pub type AppSender = Sender<ApplicationMessage>;
|
||||||
|
|
Loading…
Reference in a new issue