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 /* send a single MSS + 1B */
113 /* send exactly 2 MSS */
119 /* send 2 MSS + 1B */
147 /* send a single 1B MSS: will fall back to no GSO */
193 /* no GSO: send a single MSS */
198 /* no GSO: send a single MSS + 1B: fail */
203 /* send a single MSS: will fall back to no GSO */
209 /* send a single MSS + 1B */
216 /* send exactly 2 MSS */
222 /* send 2 MSS + 1B */
250 /* send a single 1B MSS: will fall back to no GSO */
406 int i, ret, val, mss; in run_one() local
445 mss = test->gso_len; in run_one()
447 mss = addr->sa_family == AF_INET ? CONST_MSS_V4 : CONST_MSS_V6; in run_one()
450 /* Recv all full MSS datagrams */ in run_one()
453 if (ret != mss) in run_one()
454 error(1, 0, "recv.%d: %d != %d", i, ret, mss); in run_one()
457 /* Recv the non-full last datagram, if tlen was not a multiple of mss */ in run_one()