diff options
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/inet_diag.h | 4 | ||||
-rw-r--r-- | include/uapi/linux/mpls.h | 10 | ||||
-rw-r--r-- | include/uapi/linux/tcp.h | 3 |
3 files changed, 17 insertions, 0 deletions
diff --git a/include/uapi/linux/inet_diag.h b/include/uapi/linux/inet_diag.h index d65c0a09efd3..c7093c75bdd6 100644 --- a/include/uapi/linux/inet_diag.h +++ b/include/uapi/linux/inet_diag.h | |||
@@ -143,4 +143,8 @@ struct tcp_dctcp_info { | |||
143 | __u32 dctcp_ab_tot; | 143 | __u32 dctcp_ab_tot; |
144 | }; | 144 | }; |
145 | 145 | ||
146 | union tcp_cc_info { | ||
147 | struct tcpvegas_info vegas; | ||
148 | struct tcp_dctcp_info dctcp; | ||
149 | }; | ||
146 | #endif /* _UAPI_INET_DIAG_H_ */ | 150 | #endif /* _UAPI_INET_DIAG_H_ */ |
diff --git a/include/uapi/linux/mpls.h b/include/uapi/linux/mpls.h index bc9abfe88c9a..139d4dd1cab8 100644 --- a/include/uapi/linux/mpls.h +++ b/include/uapi/linux/mpls.h | |||
@@ -31,4 +31,14 @@ struct mpls_label { | |||
31 | #define MPLS_LS_TTL_MASK 0x000000FF | 31 | #define MPLS_LS_TTL_MASK 0x000000FF |
32 | #define MPLS_LS_TTL_SHIFT 0 | 32 | #define MPLS_LS_TTL_SHIFT 0 |
33 | 33 | ||
34 | /* Reserved labels */ | ||
35 | #define MPLS_LABEL_IPV4NULL 0 /* RFC3032 */ | ||
36 | #define MPLS_LABEL_RTALERT 1 /* RFC3032 */ | ||
37 | #define MPLS_LABEL_IPV6NULL 2 /* RFC3032 */ | ||
38 | #define MPLS_LABEL_IMPLNULL 3 /* RFC3032 */ | ||
39 | #define MPLS_LABEL_ENTROPY 7 /* RFC6790 */ | ||
40 | #define MPLS_LABEL_GAL 13 /* RFC5586 */ | ||
41 | #define MPLS_LABEL_OAMALERT 14 /* RFC3429 */ | ||
42 | #define MPLS_LABEL_EXTENSION 15 /* RFC7274 */ | ||
43 | |||
34 | #endif /* _UAPI_MPLS_H */ | 44 | #endif /* _UAPI_MPLS_H */ |
diff --git a/include/uapi/linux/tcp.h b/include/uapi/linux/tcp.h index 3b9718328d8b..faa72f4fa547 100644 --- a/include/uapi/linux/tcp.h +++ b/include/uapi/linux/tcp.h | |||
@@ -112,6 +112,7 @@ enum { | |||
112 | #define TCP_FASTOPEN 23 /* Enable FastOpen on listeners */ | 112 | #define TCP_FASTOPEN 23 /* Enable FastOpen on listeners */ |
113 | #define TCP_TIMESTAMP 24 | 113 | #define TCP_TIMESTAMP 24 |
114 | #define TCP_NOTSENT_LOWAT 25 /* limit number of unsent bytes in write queue */ | 114 | #define TCP_NOTSENT_LOWAT 25 /* limit number of unsent bytes in write queue */ |
115 | #define TCP_CC_INFO 26 /* Get Congestion Control (optional) info */ | ||
115 | 116 | ||
116 | struct tcp_repair_opt { | 117 | struct tcp_repair_opt { |
117 | __u32 opt_code; | 118 | __u32 opt_code; |
@@ -189,6 +190,8 @@ struct tcp_info { | |||
189 | 190 | ||
190 | __u64 tcpi_pacing_rate; | 191 | __u64 tcpi_pacing_rate; |
191 | __u64 tcpi_max_pacing_rate; | 192 | __u64 tcpi_max_pacing_rate; |
193 | __u64 tcpi_bytes_acked; /* RFC4898 tcpEStatsAppHCThruOctetsAcked */ | ||
194 | __u64 tcpi_bytes_received; /* RFC4898 tcpEStatsAppHCThruOctetsReceived */ | ||
192 | }; | 195 | }; |
193 | 196 | ||
194 | /* for TCP_MD5SIG socket option */ | 197 | /* for TCP_MD5SIG socket option */ |