Searched refs:tcpiphdr (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Devices/Network/slirp/
H A Dtcpip.h62 struct tcpiphdr struct
67 AssertCompileSize(struct tcpiphdr, 40);
92 struct tcpiphdr dummy;
H A Dtcp_subr.c86 /* struct tcpiphdr * */
91 register struct tcpiphdr *n = &tp->t_template;
95 n->ti_len = RT_H2N_U16(sizeof (struct tcpiphdr) - sizeof (struct ip));
114 * of the tcpiphdr at ti and send directly to the addressed host.
125 tcp_respond(PNATState pData, struct tcpcb *tp, struct tcpiphdr *ti, struct mbuf *m, tcp_seq ack, tcp_seq seq, int flags)
143 *mtod(m, struct tcpiphdr *) = *ti;
144 ti = mtod(m, struct tcpiphdr *);
155 m->m_len = sizeof (struct tcpiphdr);
163 tlen += sizeof (struct tcpiphdr);
H A Dsocket.h59 struct tcpiphdr *so_ti; /* Pointer to the original ti within
H A Dtcp_output.c98 register struct tcpiphdr *ti;
310 * max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MHLEN
313 hdrlen = sizeof (struct tcpiphdr);
508 ti = mtod(m, struct tcpiphdr *);
510 memcpy((caddr_t)ti, &tp->t_template, sizeof (struct tcpiphdr));
H A Dtcp_input.c293 register struct tcpiphdr *ti;
388 ti = mtod(m, struct tcpiphdr *);
429 optp = mtod(m, caddr_t) + sizeof (struct tcpiphdr);
465 m->m_data += sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr);
466 m->m_len -= sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr);
809 m->m_data -= sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr);
810 m->m_len += sizeof(struct tcpiphdr)+off-sizeof(struct tcphdr);
1805 tcp_dooptions(PNATState pData, struct tcpcb *tp, u_char *cp, int cnt, struct tcpiphdr *ti)
1885 tcp_pulloutofband(struct socket *so, struct tcpiphdr *ti, struct mbuf *m)
2013 mss = min(if_mtu, if_mru) - sizeof(struct tcpiphdr);
[all...]
H A Dtcp_var.h101 /* struct tcpiphdr *t_template; / * skeletal packet for transmit */
102 struct tcpiphdr t_template;
H A Dslirp.h330 void tcp_dooptions (PNATState, struct tcpcb *, u_char *, int, struct tcpiphdr *);
341 void tcp_respond (PNATState, struct tcpcb *, register struct tcpiphdr *, register struct mbuf *, tcp_seq, tcp_seq, int);
H A Ddebug.c426 const struct tcpiphdr *ti = (const struct tcpiphdr *)pvValue;

Completed in 448 milliseconds