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

  /src/sys/netinet/
in_gif.c 248 struct ip *xip; local in function:in_gif_input
250 if (M_UNWRITABLE(m, sizeof(*xip))) {
251 if ((m = m_pullup(m, sizeof(*xip))) == NULL)
254 xip = mtod(m, struct ip *);
256 ip_ecn_egress(ECN_ALLOWED, &otos, &xip->ip_tos);
258 ip_ecn_egress(ECN_NOCARE, &otos, &xip->ip_tos);
  /src/sys/netipsec/
ipsecif.c 748 struct ip *xip; local in function:ipsecif4_input
750 if (M_UNWRITABLE(m, sizeof(*xip))) {
751 m = m_pullup(m, sizeof(*xip));
755 xip = mtod(m, struct ip *);
758 ip_ecn_egress(ECN_ALLOWED, &otos, &xip->ip_tos);
760 ip_ecn_egress(ECN_NOCARE, &otos, &xip->ip_tos);

Completed in 11 milliseconds