Lines Matching full:mss
65 int tlen; /* send() buffer size, may exceed mss */
67 int gso_len; /* mss after applying gso */
68 int r_num_mss; /* recv(): number of calls of full mss */
69 int r_len_last; /* recv(): size of last non-mss dgram, if any */
90 /* no GSO: send a single MSS */
95 /* no GSO: send a single MSS + 1B: fail */
100 /* send a single MSS: will fall back to no GSO */
106 /* datalen <= MSS < gso_len: will fall back to no GSO */
113 /* MSS < datalen < gso_len: fail */
119 /* send a single MSS + 1B */
126 /* send exactly 2 MSS */
132 /* send 2 MSS + 1B */
160 /* send a single 1B MSS: will fall back to no GSO */
206 /* no GSO: send a single MSS */
211 /* no GSO: send a single MSS + 1B: fail */
216 /* send a single MSS: will fall back to no GSO */
222 /* datalen <= MSS < gso_len: will fall back to no GSO */
229 /* MSS < datalen < gso_len: fail */
235 /* send a single MSS + 1B */
242 /* send exactly 2 MSS */
248 /* send 2 MSS + 1B */
276 /* send a single 1B MSS: will fall back to no GSO */
432 int i, ret, val, mss; in run_one() local
471 mss = test->gso_len; in run_one()
473 mss = addr->sa_family == AF_INET ? CONST_MSS_V4 : CONST_MSS_V6; in run_one()
476 /* Recv all full MSS datagrams */ in run_one()
479 if (ret != mss) in run_one()
480 error(1, 0, "recv.%d: %d != %d", i, ret, mss); in run_one()
483 /* Recv the non-full last datagram, if tlen was not a multiple of mss */ in run_one()