-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor configs and handlers, interceptors
- Loading branch information
yngrtc
committed
Mar 8, 2024
1 parent
a2a9115
commit 144e45f
Showing
28 changed files
with
33 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pub(crate) mod media_config; | ||
pub(crate) mod server_config; | ||
pub(crate) mod session_config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/interceptor/report/receiver_report.rs → src/interceptors/report/receiver_report.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
src/interceptor/report/sender_report.rs → src/interceptors/report/sender_report.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
#![warn(rust_2018_idioms)] | ||
#![allow(dead_code)] | ||
|
||
pub(crate) mod configs; | ||
pub(crate) mod description; | ||
pub(crate) mod endpoint; | ||
pub(crate) mod handler; | ||
pub(crate) mod interceptor; | ||
pub(crate) mod handlers; | ||
pub(crate) mod interceptors; | ||
pub(crate) mod messages; | ||
pub(crate) mod metrics; | ||
pub(crate) mod server; | ||
pub(crate) mod session; | ||
pub(crate) mod types; | ||
|
||
pub use configs::{media_config::MediaConfig, server_config::ServerConfig}; | ||
pub use description::RTCSessionDescription; | ||
pub use handler::{ | ||
pub use handlers::{ | ||
datachannel::DataChannelHandler, demuxer::DemuxerHandler, dtls::DtlsHandler, | ||
exception::ExceptionHandler, gateway::GatewayHandler, interceptor::InterceptorHandler, | ||
sctp::SctpHandler, srtp::SrtpHandler, stun::StunHandler, | ||
}; | ||
pub use server::{certificate::RTCCertificate, config::ServerConfig, states::ServerStates}; | ||
pub use server::{certificate::RTCCertificate, states::ServerStates}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
pub(crate) mod certificate; | ||
pub(crate) mod config; | ||
pub(crate) mod states; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters