diff options
author | Ian Gudger <igudger@google.com> | 2020-06-11 18:02:58 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-11 18:04:43 -0700 |
commit | dc4e0157ef09632a25575810a70846ea81c4dd6b (patch) | |
tree | 486cd9fa3124ca39388d22b6542fb709cdc08a44 /test/packetimpact/proto | |
parent | fbe41987c999729ceec6851ff64acc9013a0c602 (diff) |
Add test for reordering.
Tests the effect of reordering on retransmission and window size.
Test covers the expected behavior of both Linux and netstack, however, netstack
does not behave as expected. Further, the current expected behavior of netstack
is not ideal and should be adjusted in the future.
PiperOrigin-RevId: 316015184
Diffstat (limited to 'test/packetimpact/proto')
-rw-r--r-- | test/packetimpact/proto/posix_server.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/packetimpact/proto/posix_server.proto b/test/packetimpact/proto/posix_server.proto index 77da0fb3a..ccd20b10d 100644 --- a/test/packetimpact/proto/posix_server.proto +++ b/test/packetimpact/proto/posix_server.proto @@ -150,7 +150,7 @@ message SendRequest { message SendResponse { int32 ret = 1; - int32 errno_ = 2; + int32 errno_ = 2; // "errno" may fail to compile in c++. } message SendToRequest { |