remove an unused global request case we aren't using at this point

pull/98/head
John Safranek 2018-09-19 15:42:35 -07:00
parent f58cdee4a6
commit 1478f47296
1 changed files with 0 additions and 13 deletions

View File

@ -3605,19 +3605,6 @@ static int DoGlobalRequest(WOLFSSH* ssh,
ret = GetBoolean(&wantReply, buf, len, &begin); ret = GetBoolean(&wantReply, buf, len, &begin);
} }
#ifdef WOLFSSH_FWD
if (ret == WS_SUCCESS) {
if (WSTRNCMP(name, "tcpip-forward", nameSz) == 0) {
fprintf(stderr, "tcpip-forward requested\n");
fflush(stderr);
}
else if (WSTRNCMP(name, "cancel-tcpip-forward", nameSz) == 0) {
fprintf(stderr, "cancel-tcpip-forward requested\n");
fflush(stderr);
}
}
#endif /* WOLFSSH_FWD */
if (ret == WS_SUCCESS) { if (ret == WS_SUCCESS) {
*idx += len; *idx += len;