Lines Matching defs:sppcb
13 struct sppcb { struct
14 struct spidp_q s_q; /* queue for out-of-order receipt */
15 struct nspcb *s_nspcb; /* backpointer to internet pcb */
16 u_char s_state;
17 u_char s_flags;
26 u_short s_mtu; /* Max packet size for this stream */
29 struct idp *s_idp;
30 struct sphdr s_shdr; /* prototype header to transmit */
39 struct sphdr s_rhdr; /* last received header (in effect!)*/
40 u_short s_rack; /* their acknowledge number */
41 u_short s_ralo; /* their allocation number */
42 u_short s_smax; /* highest packet # we have sent */
43 u_short s_snxt; /* which packet to send next */
47 int s_cwnd; /* Congestion-controlled window */
49 short s_swnd; /* == tcp snd_wnd, in packets */
50 short s_smxw; /* == tcp max_sndwnd */
53 u_short s_swl1; /* == tcp snd_wl1 */
54 u_short s_swl2; /* == tcp snd_wl2 */
55 int s_cwmx; /* max allowable cwnd */
56 int s_ssthresh; /* s_cwnd size threshhold for
63 short s_idle; /* time idle */
64 short s_timer[SPPT_NTIMERS]; /* timers */
88 #define nstosppcb(np) ((struct sppcb *)(np)->nsp_pcb) argument