Lines Matching refs:tcpiphdr
112 struct tcpiphdr *ti);
116 tcp_reass(register struct tcpcb *tp, register struct tcpiphdr *ti, in tcp_reass()
119 register struct tcpiphdr *q; in tcp_reass()
223 } while (ti != (struct tcpiphdr *)tp && ti->ti_seq == tp->rcv_nxt); in tcp_reass()
236 register struct tcpiphdr *ti; in tcp_input()
278 ti = mtod(m, struct tcpiphdr *); in tcp_input()
324 optp = mtod(m, caddr_t) + sizeof (struct tcpiphdr); in tcp_input()
358 m->m_data += sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr); in tcp_input()
359 m->m_len -= sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr); in tcp_input()
685 m->m_data -= sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr); in tcp_input()
686 m->m_len += sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr); in tcp_input()
785 (void) tcp_reass(tp, (struct tcpiphdr *)0, in tcp_input()
1055 (void) tcp_reass(tp, (struct tcpiphdr *)0, (struct mbuf *)0); in tcp_input()
1498 tcp_dooptions(struct tcpcb *tp, u_char *cp, int cnt, struct tcpiphdr *ti) in tcp_dooptions()
1577 struct tcpiphdr *ti;
1706 mss = min(IF_MTU, IF_MRU) - sizeof(struct tcpiphdr); in tcp_mss()