Lines Matching refs:mtus
55 size_t mtus[30];
82 mtus[i] = DTLS_get_data_mtu(clnt_ssl);
86 500 + i, (unsigned long)mtus[i]);
87 if (!TEST_size_t_ne(mtus[i], 0)) {
100 for (s = mtus[0]; s <= mtus[29]; s++) {
110 /* DTLS_get_data_mtu() with record MTU 500+i returned mtus[i] ... */
112 if (!TEST_false(s <= mtus[i] && reclen > (size_t)(500 + i))) {
114 * We sent a packet smaller than or equal to mtus[j] and
117 TEST_error("%s: s=%lu, mtus[i]=%lu, reclen=%lu, i=%d",
118 cs, (unsigned long)s, (unsigned long)mtus[i],
122 if (!TEST_false(s > mtus[i] && reclen <= (size_t)(500 + i))) {
124 * We sent a *larger* packet than mtus[i] and that *still*
128 TEST_error("%s: s=%lu, mtus[i]=%lu, reclen=%lu, i=%d",
129 cs, (unsigned long)s, (unsigned long)mtus[i],