Hello Stackoverflow experts,
I am trying to send 4096 byte of message by splitting the message into 4 packets.
However, Simply sending the messages in bursts does not guarantee that the messages will be received in order. So I am having trouble to find out which library (Reorder library or IP fragmentation) will help me to guarantee that the messages will be received in order.
https://doc.dpdk.org/guides/prog_guide/reorder_lib.html https://doc.dpdk.org/guides/sample_app_ug/ip_frag.html
For example if I send 3 messages in 3 bursts I receive messages like this below
ex) send (3 burst) [1111111] [22222] [33333]
ex) recv [33333] [22222] [1111111]
So In order to solve this issue, I was struggling with reorder library and ip fragmentation in l3fwd example. Which library do I have to use in order to achieve the result like this below? (IP fragmentation or Reorder Library)
ex) send (3 burst) [1111111] [22222] [33333]
ex) recv [1111111] [22222] [33333]