Test SPTPS messages sent while key renegotation is in progress.

This commit is contained in:
Guus Sliepen 2012-03-18 17:42:43 +01:00
parent 3a4fe104a0
commit c970ecdd75

View file

@ -154,9 +154,11 @@ int main(int argc, char *argv[]) {
break;
if(buf[0] == '^')
sptps_send_record(&s, SPTPS_HANDSHAKE, NULL, 0);
else if(buf[0] == '$')
else if(buf[0] == '$') {
sptps_force_kex(&s);
else
if(len > 1)
sptps_send_record(&s, 0, buf, len);
} else
if(!sptps_send_record(&s, buf[0] == '!' ? 1 : 0, buf, buf[0] == '\n' ? 0 : buf[0] == '*' ? sizeof buf : len))
return 1;
}