| 16 | NetLib::ReadUInt16(data, &offset, &maxSegmentSize); |
| 17 | } |
| 18 | void TCPopMSS::WriteBytes(u8* buffer, int* offset) const |
| 19 | { |
| 20 | NetLib::WriteByte08(buffer, offset, GetCode()); |
| 21 | NetLib::WriteByte08(buffer, offset, GetLength()); |
| 22 | |
| 23 | NetLib::WriteUInt16(buffer, offset, maxSegmentSize); |
| 24 | } |
| 25 | |
| 26 | TCPopWS::TCPopWS(u8 ws) |
| 27 | : windowScale{ws} |
nothing calls this directly
no test coverage detected