-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unified local UDP association implementation
NOTE: Every time when sending packets back to local listener will require an allocation of Box<Pin<Future>> because GAT is not stablized yet.
- Loading branch information
Showing
14 changed files
with
735 additions
and
1,127 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
//! Shadowsocks Local Network Utilities | ||
pub use self::{auto_proxy_io::AutoProxyIo, auto_proxy_stream::AutoProxyClientStream}; | ||
pub use self::{ | ||
tcp::{auto_proxy_io::AutoProxyIo, auto_proxy_stream::AutoProxyClientStream}, | ||
udp::{UdpAssociationManager, UdpInboundWrite}, | ||
}; | ||
|
||
mod auto_proxy_io; | ||
mod auto_proxy_stream; | ||
mod tcp; | ||
mod udp; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pub mod auto_proxy_io; | ||
pub mod auto_proxy_stream; |
Oops, something went wrong.