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 /* send a single MSS + 1B */
105 /* send exactly 2 MSS */
111 /* send 2 MSS + 1B */
139 /* send a single 1B MSS: will fall back to no GSO */
185 /* no GSO: send a single MSS */
190 /* no GSO: send a single MSS + 1B: fail */
195 /* send a single MSS: will fall back to no GSO */
201 /* send a single MSS + 1B */
208 /* send exactly 2 MSS */
214 /* send 2 MSS + 1B */
242 /* send a single 1B MSS: will fall back to no GSO */
508 int i, ret, val, mss; in run_one() local
531 mss = test->gso_len; in run_one()
533 mss = addr->sa_family == AF_INET ? CONST_MSS_V4 : CONST_MSS_V6; in run_one()
536 /* Recv all full MSS datagrams */ in run_one()
539 if (ret != mss) in run_one()
540 error(1, 0, "recv.%d: %d != %d", i, ret, mss); in run_one()
543 /* Recv the non-full last datagram, if tlen was not a multiple of mss */ in run_one()