Lines Matching refs:th
218 struct tcphdr *th = (struct tcphdr *)tcp_ptr; in tcpip_fillheaders() local
241 th->th_sport = tp->lport; in tcpip_fillheaders()
242 th->th_dport = tp->fport; in tcpip_fillheaders()
243 th->th_seq = 0; in tcpip_fillheaders()
244 th->th_ack = 0; in tcpip_fillheaders()
247 th->th_off_x2 = (5 << TH_OFF_SHIFT); in tcpip_fillheaders()
248 th->th_flags = 0; in tcpip_fillheaders()
249 th->th_win = 0; in tcpip_fillheaders()
250 th->th_urp = 0; in tcpip_fillheaders()
251 th->th_sum = 0; /* in_pseudo() is called later for ipv4 */ in tcpip_fillheaders()
296 struct tcphdr th; in tcp_respond() local
297 struct tcphdr* nth = &th; in tcp_respond()
326 otMessageWrite(message, 0, &th, sizeof(struct tcphdr)); in tcp_respond()