-
Notifications
You must be signed in to change notification settings - Fork 155
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
Framing - Variable Size Length Fielded Protocol #143
base: main
Are you sure you want to change the base?
Framing - Variable Size Length Fielded Protocol #143
Conversation
@adamradocz Have you been using bedrock? I'd love to hear how, these PRs are great. I'm going to find some time to go through them. |
Thanks! Yes, I've been using Bedrock since January, and it's awesome. Mostly using this (Variable Size Length Fielded) protocol over TCP. Probably, I would use it over UDP as well, but I have no idea how to implement the server, so I'm hoping that somebody implements the QUIC protocol and so the UDP with that. :) |
I've been thinking about whether the |
Fixes #132
Added a framing protocol for a scenario when a frame is variable sized and the header's
PayloadLength
field is used to split the incoming stream. Plus implemented a sample client and server for this protocol.Clean and conflict free version of #133