1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| /* Generated by ./xlat/gen.sh from ./xlat/ip_type_of_services.in; do not edit. */
|
| #include "gcc_compat.h"
| #include "static_assert.h"
|
|
| #ifndef XLAT_MACROS_ONLY
|
| # ifndef IN_MPERS
|
| const struct xlat ip_type_of_services[] = {
| #if defined(IPTOS_LOWDELAY) || (defined(HAVE_DECL_IPTOS_LOWDELAY) && HAVE_DECL_IPTOS_LOWDELAY)
| XLAT(IPTOS_LOWDELAY),
| #endif
| #if defined(IPTOS_THROUGHPUT) || (defined(HAVE_DECL_IPTOS_THROUGHPUT) && HAVE_DECL_IPTOS_THROUGHPUT)
| XLAT(IPTOS_THROUGHPUT),
| #endif
| #if defined(IPTOS_RELIABILITY) || (defined(HAVE_DECL_IPTOS_RELIABILITY) && HAVE_DECL_IPTOS_RELIABILITY)
| XLAT(IPTOS_RELIABILITY),
| #endif
| #if defined(IPTOS_MINCOST) || (defined(HAVE_DECL_IPTOS_MINCOST) && HAVE_DECL_IPTOS_MINCOST)
| XLAT(IPTOS_MINCOST),
| #endif
| XLAT_END
| };
|
| # endif /* !IN_MPERS */
|
| #endif /* !XLAT_MACROS_ONLY */
|
|