Lines Matching refs:tcpcb
67 tcp_template(struct tcpcb *tp) in tcp_template()
105 tcp_respond(struct tcpcb *tp, struct tcpiphdr *ti, struct mbuf *m, in tcp_respond()
180 struct tcpcb *
183 register struct tcpcb *tp; in tcp_newtcpcb()
185 tp = (struct tcpcb *)malloc(sizeof(*tp)); in tcp_newtcpcb()
187 return ((struct tcpcb *)0); in tcp_newtcpcb()
189 memset((char *) tp, 0, sizeof(struct tcpcb)); in tcp_newtcpcb()
223 struct tcpcb *tcp_drop(struct tcpcb *tp, int err) in tcp_drop()
254 struct tcpcb *
255 tcp_close(struct tcpcb *tp) in tcp_close()
288 return ((struct tcpcb *)0); in tcp_close()
307 struct tcpcb *tp = intotcpcb(inp);
330 tcp_sockclosed(struct tcpcb *tp) in tcp_sockclosed()
592 struct tcpcb *tp; in tcp_connect()