Home
last modified time | relevance | path

Searched refs:stcp (Results 1 – 1 of 1) sorted by relevance

/xnu-11215.1.10/bsd/skywalk/nexus/flowswitch/flow/
H A Dflow_agg.c1147 struct tcphdr *stcp = (struct tcphdr *)(void *)(sl3_hdr + sl3hlen); in can_agg_slowpath() local
1152 uint16_t sl4hlen = (stcp->th_off << 2); in can_agg_slowpath()
1153 if (memcmp(&stcp->th_ack, &tcp->th_ack, sizeof(stcp->th_ack)) != 0 || in can_agg_slowpath()
1154 memcmp(&stcp->th_win, &tcp->th_win, sizeof(stcp->th_win)) != 0) { in can_agg_slowpath()
1156 DTRACE_SKYWALK4(aggr__fail9, uint32_t, ntohl(stcp->th_ack), in can_agg_slowpath()
1157 uint32_t, ntohl(tcp->th_ack), uint16_t, ntohs(stcp->th_win), in can_agg_slowpath()
1162 if ((stcp->th_flags & ~(TH_PUSH)) != (tcp->th_flags & ~(TH_PUSH))) { in can_agg_slowpath()
1164 DTRACE_SKYWALK2(aggr__fail10, uint8_t, stcp->th_flags, in can_agg_slowpath()
1181 if (tcp_opts_len > 0 && memcmp((uint8_t *)(stcp + 1), in can_agg_slowpath()
1196 if (IS_P2ALIGNED(stcp + 1, sizeof(uint32_t))) { in can_agg_slowpath()
[all …]