Home | History | Annotate | Download | only in test

Lines Matching refs:mtus

56     size_t mtus[30];
84 mtus[i] = DTLS_get_data_mtu(clnt_ssl);
88 500 + i, (unsigned long)mtus[i]);
89 if (!TEST_size_t_ne(mtus[i], 0)) {
99 * Now for all values in the range of payload MTUs, send a payload of
102 for (s = mtus[0]; s <= mtus[29]; s++) {
112 /* DTLS_get_data_mtu() with record MTU 500+i returned mtus[i] ... */
114 if (!TEST_false(s <= mtus[i] && reclen > (size_t)(500 + i))) {
116 * We sent a packet smaller than or equal to mtus[j] and
119 TEST_error("%s: s=%lu, mtus[i]=%lu, reclen=%lu, i=%d",
120 cs, (unsigned long)s, (unsigned long)mtus[i],
124 if (!TEST_false(s > mtus[i] && reclen <= (size_t)(500 + i))) {
126 * We sent a *larger* packet than mtus[i] and that *still*
130 TEST_error("%s: s=%lu, mtus[i]=%lu, reclen=%lu, i=%d",
131 cs, (unsigned long)s, (unsigned long)mtus[i],