-
- Downloads
Implement TURN server authentication with hmac
This is a prefered method to allow limited access to the TURN server
Showing
- Cargo.lock 35 additions, 0 deletionsCargo.lock
- Cargo.toml 3 additions, 0 deletionsCargo.toml
- src/client_server/voip.rs 44 additions, 7 deletionssrc/client_server/voip.rs
- src/database.rs 2 additions, 0 deletionssrc/database.rs
- src/database/globals.rs 4 additions, 0 deletionssrc/database/globals.rs
... | @@ -79,6 +79,9 @@ num_cpus = "1.13.0" | ... | @@ -79,6 +79,9 @@ num_cpus = "1.13.0" |
threadpool = "1.8.1" | threadpool = "1.8.1" | ||
heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c758867e05ad973ef800a6fe1d5d", optional = true } | heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c758867e05ad973ef800a6fe1d5d", optional = true } | ||
thread_local = "1.1.3" | thread_local = "1.1.3" | ||
# used for TURN server authentication | |||
hmac = "0.11.0" | |||
sha-1 = "0.9.8" | |||
[features] | [features] | ||
default = ["conduit_bin", "backend_sqlite"] | default = ["conduit_bin", "backend_sqlite"] | ||
... | ... |
Please register or sign in to comment