Add UDP Support #37
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Please add UDP support (and/or TLS) to support the new HTTP/3 protocol.
Generic UDP support is not possible because it’s sessionless...
HOWEVER, I’m very interested in QUIC (HTTP/3) support.
Could you help me debug and implement?
What software are you using that uses QUIC?
Hello \o
udp is possible over tcp, consume an udp port (on server) encode to tcp, send and decode to udp to a udp port(on client). I know projects like this (udp over tcp) but only in python.
I'm here because I'm trying to consume the mosh-server.
@gerardo-junior You can already do that with a tools like sclient + udptunnel.
I don't plan to support UDP until there's a good QUIC library for doing so.
I actually have a new Telebit client built in Go (not yet publicly available), and Go will probably have full QUIC support far before node (especially considering that node still doesn't have good http/2 support).