diff options
author | Anders Persson <Anders.Persson@Sun.COM> | 2009-10-21 19:52:57 -0700 |
---|---|---|
committer | Anders Persson <Anders.Persson@Sun.COM> | 2009-10-21 19:52:57 -0700 |
commit | dc7c11716d554aadaff1e4f6a09a5f3d222f421d (patch) | |
tree | 89994738c88ee43d66b9fab4bd4a4d1fd75ebe15 /usr/src/uts/common/inet/tcp.h | |
parent | 491f61a1e1c1fc54a47bbcf53dbbbe1293b93b27 (diff) | |
download | illumos-gate-dc7c11716d554aadaff1e4f6a09a5f3d222f421d.tar.gz |
6867122 writes on tcp sockets can return ENOTCONN after receiving a RST
Diffstat (limited to 'usr/src/uts/common/inet/tcp.h')
-rw-r--r-- | usr/src/uts/common/inet/tcp.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr/src/uts/common/inet/tcp.h b/usr/src/uts/common/inet/tcp.h index ae7f471809..8442c4f384 100644 --- a/usr/src/uts/common/inet/tcp.h +++ b/usr/src/uts/common/inet/tcp.h @@ -597,11 +597,9 @@ typedef struct tcp_s { uint32_t tcp_snxt_shrunk; /* - * The socket generation number is bumped when an outgoing connection - * attempts is made, and it sent up to the socket when the - * connection was successfully established, or an error occured. The - * generation is used to ensure that the socket does not miss the - * asynchronous notification. + * Socket generation number which is bumped when a connection attempt + * is initiated. Its main purpose is to ensure that the socket does not + * miss the asynchronous connected/disconnected notification. */ sock_connid_t tcp_connid; |