-
Notifications
You must be signed in to change notification settings - Fork 36
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
QUIC support #34
QUIC support #34
Conversation
@vyzo I assume you tested the packaging. There was an issue reported here: libp2p/go-libp2p-quic-transport#33 |
I guess it doesn't matter that much because we expect people to build the daemon with make. |
yeah, we build after gx-go rw so that issue doesn't affect us. |
ok, this not working yet. |
Yeah, jumped the gun too soon. Looks like a generalised test failure. |
updated the gx dependencies, but now when I start the daemon with -quic the other transports disappear. |
ok, it seems that I have to explicitly specify listen addresses when I explicitly specify transports. |
alright, now it should be good. perhaps we should have a quicOnly mode that disables the other listen addrs? |
Adds support for the QUIC transport, enabled with the
-quic
flag.Closes #33.