HomeSort by relevance Sort by last modified time
    Searched full:t_maxseg (Results 1 - 14 of 14) sorted by null

  /external/qemu/slirp/
tcp_timer.c 175 * don't... instead halve the t_maxseg, which might break up the NULLs and
181 tp->t_maxseg >>= 1;
182 if (tp->t_maxseg < 32) {
247 u_int win = min(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_maxseg;
250 tp->snd_cwnd = tp->t_maxseg;
251 tp->snd_ssthresh = win * tp->t_maxseg;
tcp_output.c 94 tp->snd_cwnd = tp->t_maxseg;
157 if (len > tp->t_maxseg) {
158 len = tp->t_maxseg;
177 if (len == tp->t_maxseg)
206 if (adv >= (long) (2 * tp->t_maxseg))
323 * bump the packet length beyond the t_maxseg length.
325 if (len > tp->t_maxseg - optlen) {
326 len = tp->t_maxseg - optlen;
437 if (win < (long)(so->so_rcv.sb_datalen / 4) && win < (long)tp->t_maxseg)
tcp_input.c 1113 tp->t_maxseg;
1117 tp->snd_ssthresh = win * tp->t_maxseg;
1121 tp->snd_cwnd = tp->t_maxseg;
    [all...]
tcp_var.h 50 u_short t_maxseg; /* maximum segment size */ member in struct:tcpcb
slirp.c 876 qemu_put_be16(f, tp->t_maxseg);
969 tp->t_maxseg = qemu_get_be16(f);
tcp_subr.c 189 tp->t_maxseg = TCP_MSS;
308 tp->snd_cwnd = tp->t_maxseg;
    [all...]
socket.c 93 int mss = so->so_tcpcb->t_maxseg;
  /external/qemu/slirp-android/
tcp_timer.c 175 * don't... instead halve the t_maxseg, which might break up the NULLs and
181 tp->t_maxseg >>= 1;
182 if (tp->t_maxseg < 32) {
247 u_int win = min(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_maxseg;
250 tp->snd_cwnd = tp->t_maxseg;
251 tp->snd_ssthresh = win * tp->t_maxseg;
tcp_output.c 94 tp->snd_cwnd = tp->t_maxseg;
157 if (len > tp->t_maxseg) {
158 len = tp->t_maxseg;
177 if (len == tp->t_maxseg)
206 if (adv >= (long) (2 * tp->t_maxseg))
323 * bump the packet length beyond the t_maxseg length.
325 if (len > tp->t_maxseg - optlen) {
326 len = tp->t_maxseg - optlen;
437 if (win < (long)(so->so_rcv.sb_datalen / 4) && win < (long)tp->t_maxseg)
tcp_input.c 1119 tp->t_maxseg;
    [all...]
tcp_var.h 55 u_short t_maxseg; /* maximum segment size */ member in struct:tcpcb
slirp.c     [all...]
tcp_subr.c 191 tp->t_maxseg = TCP_MSS;
310 tp->snd_cwnd = tp->t_maxseg;
socket.c 101 int mss = so->so_tcpcb->t_maxseg;

Completed in 1462 milliseconds