diff options
author | Zeling Feng <zeling@google.com> | 2021-03-15 10:45:56 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-15 10:47:58 -0700 |
commit | 06b047a5a8acbfc910e7e824272919d8ccd8976b (patch) | |
tree | 134de9aa1bc51f838576d8ced34060960531c14f /test/packetimpact/proto | |
parent | b9c2174b086ebeb102e87d44b7f4cc9daa7f0175 (diff) |
Packetimpact test for ACK to OTW Seq segments behavior in CLOSING
TCP, in CLOSING state, MUST send an ACK with next expected SEQ number after
receiving any segment with OTW SEQ number and remain in the same state.
While I am here, I also changed shutdown to behave the same as other calls
in posix_server.
PiperOrigin-RevId: 362976955
Diffstat (limited to 'test/packetimpact/proto')
-rw-r--r-- | test/packetimpact/proto/posix_server.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/packetimpact/proto/posix_server.proto b/test/packetimpact/proto/posix_server.proto index 521f03465..175a65336 100644 --- a/test/packetimpact/proto/posix_server.proto +++ b/test/packetimpact/proto/posix_server.proto @@ -214,7 +214,8 @@ message ShutdownRequest { } message ShutdownResponse { - int32 errno_ = 1; // "errno" may fail to compile in c++. + int32 ret = 1; + int32 errno_ = 2; // "errno" may fail to compile in c++. } message RecvRequest { |