-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: virtual socket and stream #107
Merged
Merged
Conversation
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
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #107 +/- ##
==========================================
+ Coverage 87.75% 87.78% +0.02%
==========================================
Files 117 126 +9
Lines 12986 13407 +421
==========================================
+ Hits 11396 11769 +373
- Misses 1590 1638 +48 ☔ View full report in Codecov by Sentry. |
current version can tunnel tcp connection with good bandwidth: ❯ iperf3 -c 127.0.0.1 -p 18080
Connecting to host 127.0.0.1, port 18080
[ 5] local 127.0.0.1 port 50392 connected to 127.0.0.1 port 18080
[ ID] Interval Transfer Bitrate
[ 5] 0.00-1.00 sec 94.5 MBytes 791 Mbits/sec
[ 5] 1.00-2.01 sec 90.2 MBytes 753 Mbits/sec
[ 5] 2.01-3.01 sec 87.3 MBytes 733 Mbits/sec
[ 5] 3.01-4.00 sec 90.0 MBytes 756 Mbits/sec
[ 5] 4.00-5.00 sec 89.0 MBytes 749 Mbits/sec
[ 5] 5.00-6.00 sec 92.5 MBytes 775 Mbits/sec
[ 5] 6.00-7.00 sec 92.3 MBytes 773 Mbits/sec
[ 5] 7.00-8.00 sec 90.4 MBytes 760 Mbits/sec
[ 5] 8.00-9.00 sec 89.5 MBytes 750 Mbits/sec
[ 5] 9.00-10.00 sec 89.8 MBytes 751 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - - may be quinn con be optimize for providing better speed |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR implement virtual socket and stream service, which can be used in tunnel application.
The idea of this PR is we can create a virtual socket (UDP or TCP style) with network overlay.