use webrtc sdp fingerprint as session key

This commit is contained in:
lc
2025-11-14 20:32:32 +08:00
parent 6463ba0e52
commit 955e49dc4b
2 changed files with 274 additions and 64 deletions

View File

@@ -12,17 +12,12 @@ pub struct WebRTCStream {
impl Clone for WebRTCStream {
fn clone(&self) -> Self {
WebRTCStream {
}
WebRTCStream {}
}
}
impl WebRTCStream {
pub async fn new(
_: &str,
_: u64,
) -> ResultType<Self> {
pub async fn new(_: &str, _: u64) -> ResultType<Self> {
Ok(Self {})
}
@@ -46,3 +41,5 @@ impl WebRTCStream {
None
}
}
fn main() {}