Replies: 1 comment 4 replies
-
I'm unclear on exactly what the ask is? Can you break it down to simple, explicit asks for MsQuic? Are you just looking for examples or what? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I would like to try msquic with SSH. I've got my own SSH implementation
see:
https://github.com/stefbon/OSNS
and have a client (osns_client) and working on ssh server (osns_ssh_server) and sftp subsystem (osns_sftp_subsystem).
Now within SSH if you want to enable setting up of an extra connection over UDP for datatransfer, you need an extension:
https://tools.ietf.org/html/rfc8308
Now in short: if the extensionmechanism is enabled on client and server, you need an extension to setup a data connection like:
a. client requests setup extra connection over udp with quic.
b server responds with quic versions supported
c client accepts one of the versions
d server sends a port/address to connect to and a timeout: after that the port is closed
Do you have examples with other protocols like HTTP(s) ? For inspiration and to prevent inventing the wheel.
Thanks in advance,
Stef Bon
PS earlier I've posted this on the /proto-quic group, but no response for some weeks now. So I'll try it here, maybe you know something.
Beta Was this translation helpful? Give feedback.
All reactions