diff options
author | Szabolcs Nagy <nsz@port70.net> | 2021-05-26 16:04:38 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2022-03-08 17:19:54 -0500 |
commit | bc89c311120111de330c99335d3139ff55fae1fe (patch) | |
tree | fb5f7c1bdfe74ff188b3f44a74603e95c5968e62 /include | |
parent | 9ffd145479c53b5eb0940dc6c3d09c060d7f3273 (diff) | |
download | musl-bc89c311120111de330c99335d3139ff55fae1fe.tar.gz |
netinet/tcp.h: add TCP_NLA_* values up to linux v5.12
TCP_NLA_EDT was new in v5.9, see
linux commit 48040793fa6003d211f021c6ad273477bcd90d91
tcp: add earliest departure time to SCM_TIMESTAMPING_OPT_STATS
TCP_NLA_TTL is new in v5.12, see
linux commit e7ed11ee945438b737e2ae2370e35591e16ec371
tcp: add TTL to SCM_TIMESTAMPING_OPT_STATS
Diffstat (limited to 'include')
-rw-r--r-- | include/netinet/tcp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/netinet/tcp.h b/include/netinet/tcp.h index 30f20239..08ed7cc2 100644 --- a/include/netinet/tcp.h +++ b/include/netinet/tcp.h @@ -80,6 +80,8 @@ enum { TCP_NLA_SRTT, TCP_NLA_TIMEOUT_REHASH, TCP_NLA_BYTES_NOTSENT, + TCP_NLA_EDT, + TCP_NLA_TTL, }; #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) |