-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename and reorganize Receiver and Forwarder functions (#158)
* rename control stream functions * rename ObjectDatagramForwarder * rename ObjectDatagramReceiver * rename ObjectStreamReceiver * refactor: reorganize directory structure and rename receiver/forwarder files * refactor: rename functions to spawn threads
- Loading branch information
Showing
16 changed files
with
74 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
pub(crate) mod control_stream; | ||
pub(crate) mod data_streams; | ||
pub(crate) mod senders; | ||
pub(crate) mod session_handler; | ||
pub(crate) mod stream_and_datagram; | ||
pub(crate) mod thread_starters; |
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 bi_stream; | ||
pub(crate) mod handler; | ||
pub(crate) mod sender; |
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
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,2 @@ | ||
pub(crate) mod datagram; | ||
pub(crate) mod stream; |
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
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
2 changes: 1 addition & 1 deletion
2
...am_and_datagram/uni_directional_stream.rs → ...s/server_processes/data_streams/stream.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pub(crate) mod forwarder; | ||
pub(crate) mod receiver; | ||
pub(crate) mod streams; | ||
pub(crate) mod uni_stream; |
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.
3 changes: 0 additions & 3 deletions
3
moqt-server/src/modules/server_processes/stream_and_datagram.rs
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
moqt-server/src/modules/server_processes/stream_and_datagram/bi_directional_stream.rs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.