Test corner cases in the SPTPS protocol.
* Test zero-byte messages. * Test maximum size (65535 byte) messages. * Test different message types. * Test key renegotiation.
This commit is contained in:
parent
3001351150
commit
67ff81ec16
1 changed files with 7 additions and 2 deletions
|
@ -121,7 +121,7 @@ int main(int argc, char *argv[]) {
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
while(true) {
|
while(true) {
|
||||||
char buf[4095];
|
char buf[65535] = "";
|
||||||
|
|
||||||
struct pollfd fds[2];
|
struct pollfd fds[2];
|
||||||
fds[0].fd = 0;
|
fds[0].fd = 0;
|
||||||
|
@ -139,7 +139,12 @@ int main(int argc, char *argv[]) {
|
||||||
}
|
}
|
||||||
if(len == 0)
|
if(len == 0)
|
||||||
break;
|
break;
|
||||||
if(!send_record(&s, 0, buf, len))
|
if(buf[0] == '^')
|
||||||
|
send_record(&s, SPTPS_HANDSHAKE, NULL, 0);
|
||||||
|
else if(buf[0] == '$')
|
||||||
|
force_kex(&s);
|
||||||
|
else
|
||||||
|
if(!send_record(&s, buf[0] == '!' ? 1 : 0, buf, buf[0] == '\n' ? 0 : buf[0] == '*' ? sizeof buf : len))
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue