Searched refs:tcpcb (Results 1 – 9 of 9) sorted by relevance
/external/qemu/slirp2/ |
D | slirp.h | 237 int tcp_reass _P((register struct tcpcb *, register struct tcpiphdr *, MBuf )); 239 void tcp_dooptions _P((struct tcpcb *, u_char *, int, struct tcpiphdr *)); 240 void tcp_xmit_timer _P((register struct tcpcb *, int)); 241 int tcp_mss _P((register struct tcpcb *, u_int)); 244 int tcp_output _P((register struct tcpcb *)); 245 void tcp_setpersist _P((register struct tcpcb *)); 249 void tcp_template _P((struct tcpcb *)); 250 void tcp_respond _P((struct tcpcb *, register struct tcpiphdr *, register MBuf , tcp_seq, tcp_seq, … 251 struct tcpcb * tcp_newtcpcb _P((struct socket *)); 252 struct tcpcb * tcp_close _P((register struct tcpcb *)); [all …]
|
D | tcp_timer.h | 135 struct tcpcb; 139 void tcp_canceltimers _P((struct tcpcb *)); 140 struct tcpcb * tcp_timers _P((register struct tcpcb *, int));
|
D | tcp_timer.c | 54 register struct tcpcb *tp; in tcp_fasttimo() 61 if ((tp = (struct tcpcb *)so->so_tcpcb) && in tcp_fasttimo() 79 register struct tcpcb *tp; in tcp_slowtimo() 122 struct tcpcb *tp; in tcp_canceltimers() 136 struct tcpcb * 138 register struct tcpcb *tp; in tcp_timers()
|
D | tcp_subr.c | 83 struct tcpcb *tp; in tcp_template() 122 struct tcpcb *tp; in tcp_respond() 200 struct tcpcb * 204 register struct tcpcb *tp; 206 tp = (struct tcpcb *)malloc(sizeof(*tp)); 208 return ((struct tcpcb *)0); 210 memset((char *) tp, 0, sizeof(struct tcpcb)); 244 struct tcpcb *tcp_drop(struct tcpcb *tp, int err) in tcp_drop() 275 struct tcpcb * 277 register struct tcpcb *tp; in tcp_close() [all …]
|
D | tcp_input.c | 118 register struct tcpcb *tp; in tcp_reass() 246 register struct tcpcb *tp = 0; 1484 struct tcpcb *tp; in tcp_dooptions() 1574 struct tcpcb *tp = sototcpcb(so); 1599 register struct tcpcb *tp; in tcp_xmit_timer() 1689 register struct tcpcb *tp; in tcp_mss()
|
D | socket.h | 44 struct tcpcb *so_tcpcb; /* pointer to TCP protocol control block */
|
D | tcp_output.c | 72 register struct tcpcb *tp; in tcp_output() 590 register struct tcpcb *tp;
|
D | tcp_var.h | 47 struct tcpcb { struct
|
D | socket.c | 216 struct tcpcb *tp = sototcpcb(so);
|