author | Szabolcs Nagy <nsz@port70.net> | 2020年07月13日 19:59:41 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2020年09月09日 17:20:57 -0400 |
commit | 616a8bf660d6c616aedf1e17adfb3de64f1ab9de (patch) | |
tree | 192b89be12d9617c1abcee554bf7f5fd098d6c5c /include | |
parent | a6c302bec1d47903bfd455c0d8129cd618037672 (diff) | |
download | musl-616a8bf660d6c616aedf1e17adfb3de64f1ab9de.tar.gz |
-rw-r--r-- | include/netinet/tcp.h | 3 |
diff --git a/include/netinet/tcp.h b/include/netinet/tcp.h index 92550dcc..b7b997f5 100644 --- a/include/netinet/tcp.h +++ b/include/netinet/tcp.h @@ -79,6 +79,7 @@ enum { TCP_NLA_REORD_SEEN, TCP_NLA_SRTT, TCP_NLA_TIMEOUT_REHASH, + TCP_NLA_BYTES_NOTSENT, }; #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) @@ -284,6 +285,8 @@ struct tcp_zerocopy_receive { uint64_t address; uint32_t length; uint32_t recv_skip_hint; + uint32_t inq; + int32_t err; }; #endif |