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 */
82 /* no GSO: send a single MSS */
87 /* no GSO: send a single MSS + 1B: fail */
92 /* send a single MSS: will fall back to no GSO */
98 /* datalen <= MSS < gso_len: will fall back to no GSO */
105 /* MSS < datalen < gso_len: fail */
111 /* send a single MSS + 1B */
118 /* send exactly 2 MSS */
124 /* send 2 MSS + 1B */
152 /* send a single 1B MSS: will fall back to no GSO */
198 /* no GSO: send a single MSS */
203 /* no GSO: send a single MSS + 1B: fail */
208 /* send a single MSS: will fall back to no GSO */
214 /* datalen <= MSS < gso_len: will fall back to no GSO */
221 /* MSS < datalen < gso_len: fail */
227 /* send a single MSS + 1B */
234 /* send exactly 2 MSS */
240 /* send 2 MSS + 1B */
268 /* send a single 1B MSS: will fall back to no GSO */
534 int i, ret, val, mss; in run_one() local
557 mss = test->gso_len; in run_one()
559 mss = addr->sa_family == AF_INET ? CONST_MSS_V4 : CONST_MSS_V6; in run_one()
562 /* Recv all full MSS datagrams */ in run_one()
565 if (ret != mss) in run_one()
566 error(1, 0, "recv.%d: %d != %d", i, ret, mss); in run_one()
569 /* Recv the non-full last datagram, if tlen was not a multiple of mss */ in run_one()