-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PoC/example pure uring based UDP client and server
These are not fully featured and are basically the bare minimum to get a working pair of UDP client and server. By building a pure I/O based event loop the hope was to cut out all the overhead relating to the use of async and make it possible to focus purely on the I/O bottlenecks.
- Loading branch information
Showing
7 changed files
with
1,261 additions
and
1 deletion.
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
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,22 @@ | ||
[package] | ||
name = "uring-udp-client" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
lightway-core = { workspace = true, features = ["postquantum"] } | ||
io-uring = "0.6" | ||
anyhow.workspace = true | ||
libc.workspace = true | ||
bytes.workspace = true | ||
tracing-subscriber.workspace = true | ||
tracing.workspace = true | ||
arrayvec = "0.7.6" | ||
tun2 = "3.1.4" | ||
pnet.workspace = true | ||
socket2.workspace = true | ||
sync-unsafe-cell = "0.1.1" | ||
|
||
[lints] | ||
workspace = true | ||
|
Oops, something went wrong.