Skip to content

Added packetization model in .pdl (pending change the .py library...

Added TCP message fragmentation (packetization) based on the configured MSS. Messages bigger than the MSS are splitter into smaller network packets at the sender side. On the receiver side, all messages are buffered and forwarded once all arrived. Implemented using a PacketizationProtocol that wraps protocols in the original message. N-1 new packets are created with size MSS and no protocols, plus a last packet with size size%MSS and wrapping all original protocols

Merge request reports