Lines Matching defs:pcb
135 #define RCV_WND_SCALE(pcb, wnd) (((wnd) >> (pcb)->rcv_scale)) argument
136 #define SND_WND_SCALE(pcb, wnd) (((wnd) << (pcb)->snd_scale)) argument
138 #define TCP_WND_MAX(pcb) ((tcpwnd_size_t)(((pcb)->flags & TF_WND_SCALE) ? TCP_WND : TCPWND16… argument
141 #define RCV_WND_SCALE(pcb, wnd) (wnd) argument
142 #define SND_WND_SCALE(pcb, wnd) (wnd) argument
144 #define TCP_WND_MAX(pcb) TCP_WND argument
365 #define tcp_mss(pcb) (((pcb)->flags & TF_TIMESTAMP) ? ((pcb)->mss - 12) : (pc… argument
367 #define tcp_mss(pcb) ((pcb)->mss) argument
369 #define tcp_sndbuf(pcb) (TCPWND16((pcb)->snd_buf)) argument
370 #define tcp_sndqueuelen(pcb) ((pcb)->snd_queuelen) argument
372 #define tcp_nagle_disable(pcb) ((pcb)->flags |= TF_NODELAY) argument
374 #define tcp_nagle_enable(pcb) ((pcb)->flags = (tcpflags_t)((pcb)->flags & ~TF_NODELAY)) argument
376 #define tcp_nagle_disabled(pcb) (((pcb)->flags & TF_NODELAY) != 0) argument
379 #define tcp_backlog_set(pcb, new_backlog) do { \ argument
385 #define tcp_backlog_set(pcb, new_backlog) argument
386 #define tcp_backlog_delayed(pcb) argument
387 #define tcp_backlog_accepted(pcb) argument
389 #define tcp_accepted(pcb) /* compatibility define, not needed any more */ argument
400 #define tcp_listen(pcb) tcp_listen_with_backlog(pcb, TCP_DEFAULT_LISTEN_BACKLOG) argument