You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zeroextenderlength argument description states that "Length of zero bytes extender array that will be added to the agent's payload in case its size is less than MTU value. Is used to reveal problems with network packets fragmentation."
It is really transmitted as a text string (serialized JSON) that looks as follows:
"[0 0 0 0 0 0 0 ...]". So that each zero byte is converted into "0" and space (x20). This results in two times more extra data added into the real packet.
So, let's change production of extra payload in order to keep its byte length close to zeroextenderlength value.
The text was updated successfully, but these errors were encountered:
AlexeyKasatkin
changed the title
agent produces two time more data than it is set in zeroextenderlength
agent produces two times more data than it is set in zeroextenderlength
Jun 22, 2017
zeroextenderlength argument description states that "Length of zero bytes extender array that will be added to the agent's payload in case its size is less than MTU value. Is used to reveal problems with network packets fragmentation."
It is really transmitted as a text string (serialized JSON) that looks as follows:
"[0 0 0 0 0 0 0 ...]". So that each zero byte is converted into "0" and space (x20). This results in two times more extra data added into the real packet.
So, let's change production of extra payload in order to keep its byte length close to zeroextenderlength value.
The text was updated successfully, but these errors were encountered: