Report errors if a remote request fails

--HG--
extra : convert_revision : ed1584aacf189b8f8ddee813b98342fa8bb38022
This commit is contained in:
Matt Johnston
2008-11-02 12:25:08 +00:00
parent ed79abed76
commit 5cd6995fb5
4 changed files with 46 additions and 1 deletions

View File

@@ -64,6 +64,10 @@ static const packettype cli_packettypes[] = {
{SSH_MSG_CHANNEL_OPEN_FAILURE, recv_msg_channel_open_failure},
{SSH_MSG_USERAUTH_BANNER, recv_msg_userauth_banner}, /* client */
{SSH_MSG_USERAUTH_SPECIFIC_60, recv_msg_userauth_specific_60}, /* client */
#ifdef ENABLE_CLI_REMOTETCPFWD
{SSH_MSG_REQUEST_SUCCESS, cli_recv_msg_request_success}, /* client */
{SSH_MSG_REQUEST_FAILURE, cli_recv_msg_request_failure}, /* client */
#endif
{0, 0} /* End */
};