Searched defs:oth (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dvj.c147 register struct tcphdr *oth; local
237 oth = (struct tcphdr *)&((long *)&cs->cs_ip)[hlen];
262 || getth_off(*th) != getth_off(*oth)
264 || (getth_off(*th) > 5 && BCMP(th + 1, oth + 1, (getth_off(*th) - 5) << 2)))
277 } else if (th->th_urp != oth->th_urp)
284 if ((deltaS = (u_short)(ntohs(th->th_win) - ntohs(oth->th_win))) != 0) {
289 if ((deltaL = ntohl(th->th_ack) - ntohl(oth->th_ack)) != 0) {
297 if ((deltaL = ntohl(th->th_seq) - ntohl(oth->th_seq)) != 0) {
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dvj.c143 register struct tcp_hdr *oth; local
237 oth = (struct tcp_hdr *)&((long *)&cs->cs_ip)[hlen];
261 || TCPH_HDRLEN(th) != TCPH_HDRLEN(oth)
263 || (TCPH_HDRLEN(th) > 5 && BCMP(th + 1, oth + 1, (TCPH_HDRLEN(th) - 5) << 2))) {
277 } else if (th->urgp != oth->urgp) {
285 if ((deltaS = (u_short)(ntohs(th->wnd) - ntohs(oth->wnd))) != 0) {
290 if ((deltaL = ntohl(th->ackno) - ntohl(oth->ackno)) != 0) {
299 if ((deltaL = ntohl(th->seqno) - ntohl(oth->seqno)) != 0) {

Completed in 97 milliseconds