HomeSort by: relevance | last modified time | path
    Searched defs:otos (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/netinet/
in_gif.c 205 u_int8_t otos; local in function:in_gif_input
241 otos = ip->ip_tos;
256 ip_ecn_egress(ECN_ALLOWED, &otos, &xip->ip_tos);
258 ip_ecn_egress(ECN_NOCARE, &otos, &xip->ip_tos);
275 ip_ecn_egress(ECN_ALLOWED, &otos, &itos);
277 ip_ecn_egress(ECN_NOCARE, &otos, &itos);
  /src/sys/netipsec/
xform_ipip.c 130 uint8_t otos; local in function:_ipip_input
170 otos = mtod(m, struct ip *)->ip_tos;
175 otos = (ntohl(mtod(m, struct ip6_hdr *)->ip6_flow) >> 20) & 0xff;
237 ip_ecn_egress(ip4_ipsec_ecn, &otos, &ip4->ip_tos);
244 ip_ecn_egress(ip6_ipsec_ecn, &otos, &itos);
323 uint8_t tp, otos; local in function:ipip_output
412 otos = 0;
413 ip_ecn_ingress(ECN_ALLOWED, &otos, &itos);
414 ipo->ip_tos = otos;
490 otos = 0
    [all...]
ipsecif.c 523 u_int8_t itos, otos; local in function:ipsecif6_output
601 otos = 0;
604 ip_ecn_ingress(ECN_ALLOWED, &otos, &itos);
606 ip_ecn_ingress(ECN_NOCARE, &otos, &itos);
609 otos = itos;
611 otos = 0;
614 ip6->ip6_flow |= htonl((u_int32_t)otos << 20);
705 u_int8_t otos; local in function:ipsecif4_input
741 otos = ip->ip_tos;
758 ip_ecn_egress(ECN_ALLOWED, &otos, &xip->ip_tos)
824 u_int32_t otos; local in function:ipsecif6_input
    [all...]
  /src/sys/net/
if_stf.c 588 uint8_t otos, itos; local in function:in_stf_input
618 otos = ip->ip_tos;
640 ip_ecn_egress(ECN_ALLOWED, &otos, &itos);
642 ip_ecn_egress(ECN_NOCARE, &otos, &itos);
  /src/sys/netinet6/
in6_gif.c 96 u_int8_t itos, otos; local in function:in6_gif_output
176 ip_ecn_ingress(ECN_ALLOWED, &otos, &itos);
178 ip_ecn_ingress(ECN_NOCARE, &otos, &itos);
180 ip6->ip6_flow |= htonl((u_int32_t)otos << 20);
265 u_int32_t otos; local in function:in6_gif_input
301 otos = ip6->ip6_flow;
311 otos8 = (ntohl(otos) >> 20) & 0xff;
337 ip6_ecn_egress(ECN_ALLOWED, &otos, &ip6x->ip6_flow);
339 ip6_ecn_egress(ECN_NOCARE, &otos, &ip6x->ip6_flow);
  /src/sys/altq/
altq_blue.c 544 u_int8_t otos; local in function:mark_ecn
558 otos = ip->ip_tos;
565 sum += (~otos & 0xffff) + ip->ip_tos;
altq_red.c 562 u_int8_t otos; local in function:mark_ecn
577 otos = ip->ip_tos;
584 sum += (~otos & 0xffff) + ip->ip_tos;

Completed in 20 milliseconds