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
When the client send GET to server, the packet only contains the GET abcd. In this example, the data_end - data = 8. So, if we want to re-write the value into the original packet, the packet size should be extended.
However, the packet only seemed to extend with 128 bytes length, but the maximum allowed length is 1500, then if the value is longer then 8, where to write the rest of value?
The text was updated successfully, but these errors were encountered:
When the client send
GET
to server, the packet only contains theGET abcd
. In this example, thedata_end
-data
= 8. So, if we want to re-write the value into the original packet, the packet size should be extended.However, the packet only seemed to extend with 128 bytes length, but the maximum allowed length is 1500, then if the value is longer then 8, where to write the rest of value?
The text was updated successfully, but these errors were encountered: