-
Notifications
You must be signed in to change notification settings - Fork 15
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
Unix domain socket transport #7
Comments
Now that we have a hyper/http2 transport, that is probably a better match for UDS. Just have an alternative constructor for the http2 server and client channel that uses UDS. |
Related: n0-computer/iroh#899 |
dignifiedquire
pushed a commit
that referenced
this issue
Aug 12, 2024
# This is the 1st commit message: deps: Upgrade to Quinn 0.11 and Rustls 0.23 This upgrades the Quinn and Rustls dependencies. Currently we have no released iroh-quinn yet for those versions so it points back to upstream Quinn. We should fix this before merging. # The commit message #2 will be skipped: # Create the quic configs with crypto providers # # Otherwise things are very unhappy and panic # The commit message #3 will be skipped: # Swithc back to iroh-quinn # The commit message #4 will be skipped: # Make the boxed constructor public for both futures # # otherwise it is not possible to implemeent Boxable... traits # The commit message #5 will be skipped: # refactor: use two stage accept # # this is so each step of the accept process is cancel-safe # # we might want to deprecate the combined fn. # The commit message #6 will be skipped: # refactor: use two stage everywhere # # also get rid of accept_and_read_first # The commit message #7 will be skipped: # Rename open_bi and accept_bi to just open and accept # # We only support bidirectional, so no need to disambiguate... # The commit message #8 will be skipped: # increase version number
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Either write an UDS transport from scratch, or figure out how to use quinn via an unix domain socket.
This is useful because an unix domain socket is easier to secure than a localhost network socket, and might also give a bit of a performance advantage.
The text was updated successfully, but these errors were encountered: