-
Notifications
You must be signed in to change notification settings - Fork 124
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
refactor(client,server): use quinn_udp for I/O #1604
Changes from all commits
2c42747
d4a626f
a014dc6
4e27a78
9b2b15e
d205da4
256f04c
f29ea6d
f421e91
a299070
50afb27
69c0c91
7010f09
879afda
ea4a055
c519783
1f820c7
c1043cf
8ae9dbf
d49b158
3d61bc2
4f2e56a
84a4b63
72c84d6
a59c533
5cbdb96
a9eef1a
8288143
ab7912a
b3fb48f
bff0055
d365689
541d9cb
070a46b
613a0df
5146152
dff1482
00f0eeb
6f330d3
e9ac36c
addea3c
01d8af6
8ced9d9
e9ba397
8a65b5f
4bbe07a
4d26bf0
6238994
a0d3093
babec25
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,8 @@ pub mod log; | |
pub mod qlog; | ||
pub mod timer; | ||
pub mod tos; | ||
#[cfg(feature = "udp")] | ||
pub mod udp; | ||
Comment on lines
+20
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Long term, especially since That said, I suggest doing so in a separate pull request. Thoughts? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good to me. Also check if |
||
|
||
use std::fmt::Write; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needed to convert a
Datagram
to aBytes
without allocation. Used withinneqo_common::udp
, i.e. not exposed beyond the crate.