Symbol: IPV6_FLOWLABEL_LEN
sys/net/if_geneve.c
2694
ip6->ip6_flow |= htonl((u_int32_t)etos << IPV6_FLOWLABEL_LEN);
sys/net/if_geneve.c
2696
ip6->ip6_flow |= htonl((u_int32_t)tos << IPV6_FLOWLABEL_LEN);
sys/net/if_geneve.c
3152
itos = (ntohl(ip6hdr->ip6_flow) >> IPV6_FLOWLABEL_LEN) & 0xff;
sys/net/if_geneve.c
3155
ip6hdr->ip6_flow |= htonl((uint32_t)itos << IPV6_FLOWLABEL_LEN);
sys/netinet/ip6.h
108
#define IPV6_TRAFFIC_CLASS(ip6) ((ntohl((ip6)->ip6_flow) >> IPV6_FLOWLABEL_LEN) & 0xff)
sys/netinet/ip6.h
109
#define IPV6_DSCP(ip6) ((ntohl((ip6)->ip6_flow) >> IPV6_FLOWLABEL_LEN) & 0xfc)
sys/netinet/ip6.h
110
#define IPV6_ECN(ip6) ((ntohl((ip6)->ip6_flow) >> IPV6_FLOWLABEL_LEN) & 0x03)
sys/netinet/ip_carp.c
1297
ip6->ip6_flow |= htonl(V_carp_dscp << (IPV6_FLOWLABEL_LEN +
sys/netinet/ip_carp.c
1458
ip6->ip6_flow |= htonl(V_carp_dscp << (IPV6_FLOWLABEL_LEN +
sys/netinet/ip_ecn.c
207
inner8 = (ntohl(*inner) >> IPV6_FLOWLABEL_LEN) & 0xff;
sys/netinet/ip_ecn.c
209
*outer &= ~htonl(0xff << IPV6_FLOWLABEL_LEN);
sys/netinet/ip_ecn.c
210
*outer |= htonl((uint32_t)outer8 << IPV6_FLOWLABEL_LEN);
sys/netinet/ip_ecn.c
222
outer8 = (ntohl(*outer) >> IPV6_FLOWLABEL_LEN) & 0xff;
sys/netinet/ip_ecn.c
223
inner8 = oinner8 = (ntohl(*inner) >> IPV6_FLOWLABEL_LEN) & 0xff;
sys/netinet/ip_ecn.c
229
*inner &= ~htonl(0xff << IPV6_FLOWLABEL_LEN);
sys/netinet/ip_ecn.c
230
*inner |= htonl((uint32_t)inner8 << IPV6_FLOWLABEL_LEN);
sys/netinet/tcp_output.c
1213
ip6->ip6_flow &= ~htonl(IPTOS_ECN_MASK << IPV6_FLOWLABEL_LEN);
sys/netinet/tcp_output.c
1214
ip6->ip6_flow |= htonl(ect << IPV6_FLOWLABEL_LEN);
sys/netinet/tcp_subr.c
1972
ip6->ip6_flow = htonl(ect << IPV6_FLOWLABEL_LEN);
sys/netinet/tcp_syncache.c
1893
ip6->ip6_flow |= htonl(sc->sc_ip_tos << IPV6_FLOWLABEL_LEN);