...
1 package nl
2
3
4
5 const (
6 FRA_UNSPEC = iota
7 FRA_DST
8 FRA_SRC
9 FRA_IIFNAME
10 FRA_GOTO
11 FRA_UNUSED2
12 FRA_PRIORITY
13 FRA_UNUSED3
14 FRA_UNUSED4
15 FRA_UNUSED5
16 FRA_FWMARK
17 FRA_FLOW
18 FRA_TUN_ID
19 FRA_SUPPRESS_IFGROUP
20 FRA_SUPPRESS_PREFIXLEN
21 FRA_TABLE
22 FRA_FWMASK
23 FRA_OIFNAME
24 FRA_PAD
25 FRA_L3MDEV
26 FRA_UID_RANGE
27 FRA_PROTOCOL
28 FRA_IP_PROTO
29 FRA_SPORT_RANGE
30 FRA_DPORT_RANGE
31 )
32
33
34 const (
35 FR_ACT_UNSPEC = iota
36 FR_ACT_TO_TBL
37 FR_ACT_GOTO
38 FR_ACT_NOP
39 FR_ACT_RES3
40 FR_ACT_RES4
41 FR_ACT_BLACKHOLE
42 FR_ACT_UNREACHABLE
43 FR_ACT_PROHIBIT
44 )
45
46
47 const (
48 SOCK_DIAG_BY_FAMILY = 20
49 SOCK_DESTROY = 21
50 TCPDIAG_NOCOOKIE = 0xFFFFFFFF
51 )
52
53
54 const (
55 MPLS_IPTUNNEL_UNSPEC = iota
56 MPLS_IPTUNNEL_DST
57 )
58
59
60 const (
61 LWTUNNEL_ENCAP_NONE = iota
62 LWTUNNEL_ENCAP_MPLS
63 LWTUNNEL_ENCAP_IP
64 LWTUNNEL_ENCAP_ILA
65 LWTUNNEL_ENCAP_IP6
66 LWTUNNEL_ENCAP_SEG6
67 LWTUNNEL_ENCAP_BPF
68 LWTUNNEL_ENCAP_SEG6_LOCAL
69 )
70
71
72 const (
73 IPV6_SRCRT_STRICT = 0x01
74 IPV6_SRCRT_TYPE_0 = 0
75 IPV6_SRCRT_TYPE_2 = 2
76 IPV6_SRCRT_TYPE_4 = 4
77 )
78
View as plain text