-
Notifications
You must be signed in to change notification settings - Fork 25
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
Discussion on HTTP over UDP techs with UDT or QUIC or KCP #22
Comments
Hey there, Could you help me find the implementation for UDT in this repo? |
Or like which part of the code do I need to use only UDT in my nodejs code? |
UDT api is like Net module api, while UDTS api is like TLS api. check below link for detail |
@sequoiar the first line |
@amiiigh |
Does HTTPP use the packet/stream mode of UDT or message mode? |
@NooshinEghbal HTTPP(http) is run UDT stream mode. if you want message mode, you can implement nodejs/diagram over UDT message mode. |
I looked into the wiki page and the HTTPP server/client example. |
@NooshinEghbal there is no httpp enabled web-browser so far. not sure httpp.client can help on it. |
What if I just want to send a group of files from httpp server to the client? |
@NooshinEghbal you can try httpp.get a file from httpp.server . you need assemble some basic HTTP message. refer to |
HTTP over UDT over UDP was implemented. And, welcome discussion on HTTP over UDP tech with UDT, QUIC and KCP.
The text was updated successfully, but these errors were encountered: