-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
Packet encapsulation #9052
Packet encapsulation #9052
Conversation
2f95ec2
to
4dfcc4a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to understand this, but I am not really a C++ programmer .. so I used it to learn a bit about C++, so you have some questions that are just for my education :D Hope you don't mind!
Otherwise, comments are mostly about doxygen comments that are either not clear to me or missing param etc .. code-wise it looks good to me. And of course I assume you tested it :D
4dfcc4a
to
b604b5e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two minor nitpicks, but it looks good to me. Doesn't mean JGR's question isn't a valid one, but I leave that to others to jump in :D
e28c7e1
to
21f83d5
Compare
6e187cb
to
4dc6df0
Compare
…rite data into the Packet
…vent packet state modifications outside of the Packet
…buffers to prevent packet state modifications outside of the Packet
…om a buffer in to a Packet
…nternal state of Packet private
4dc6df0
to
5358287
Compare
Motivation / Problem
The pointers and state of the Packet class are updated by other functions all over the place. This makes further changes more difficult as the logic for packet size and reading/writing location is spread all over the network code.
The major benefit at the end is to make it much easier to introduce larger packet sizes, a big first step is in https://github.com/rubidium42/OpenTTD/tree/bigger_packets which makes OpenTTD accept (TCP) packets up to 32767 bytes, and uses that size to send save games as well as to the content server (which is not limited by the current MTU). Later changes could then also be done for e.g. receiving data from the content server or certain admin commands. However, that requires changes to the protocol to determine whether the other side accepts such large packets which is beyond the scope of that patch.
Description
Removes all the direct access to the state variables of a Packet.
Limitations
Any patch messing manually with the Packet state will be broken.
Technically it is possible to extend the Packet size even more, but for save games it does not seem wise to send even larger packets as then it will also take longer before we start with sending data.
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.