lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
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
30
31
32
33
34
35
36
37
38
39
40
41
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <linux/ip.h>
 
#ifndef IPTOS_NORMALSVC
#    define IPTOS_NORMALSVC 0
#endif
 
struct tos_value_mask {
   uint8_t value, mask;
};
 
static const struct tos_symbol_info {
   unsigned char value;
   const char *name;
} tos_symbol_names[] = {
   {IPTOS_LOWDELAY,    "Minimize-Delay"},
   {IPTOS_THROUGHPUT,  "Maximize-Throughput"},
   {IPTOS_RELIABILITY, "Maximize-Reliability"},
   {IPTOS_MINCOST,     "Minimize-Cost"},
   {IPTOS_NORMALSVC,   "Normal-Service"},
   {},
};
 
static bool tos_try_print_symbolic(const char *prefix,
    uint8_t value, uint8_t mask)
{
   const struct tos_symbol_info *symbol;
 
   if (mask != 0x3F)
       return false;
 
   for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
       if (value == symbol->value) {
           printf(" %s%s", prefix, symbol->name);
           return true;
       }
 
   return false;
}