Mercurial > dropbear
comparison svr-session.c @ 1411:798854f62430 fuzz
merge from main
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 14 Jun 2017 23:31:42 +0800 |
parents | 6c92e97553f1 e8f67918fdc9 |
children | 5916af64acd4 |
comparison
equal
deleted
inserted
replaced
1408:27e65d3aed5f | 1411:798854f62430 |
---|---|
65 {SSH_MSG_REQUEST_SUCCESS, ignore_recv_response}, /* client */ | 65 {SSH_MSG_REQUEST_SUCCESS, ignore_recv_response}, /* client */ |
66 #if DROPBEAR_LISTENERS | 66 #if DROPBEAR_LISTENERS |
67 {SSH_MSG_CHANNEL_OPEN_CONFIRMATION, recv_msg_channel_open_confirmation}, | 67 {SSH_MSG_CHANNEL_OPEN_CONFIRMATION, recv_msg_channel_open_confirmation}, |
68 {SSH_MSG_CHANNEL_OPEN_FAILURE, recv_msg_channel_open_failure}, | 68 {SSH_MSG_CHANNEL_OPEN_FAILURE, recv_msg_channel_open_failure}, |
69 #endif | 69 #endif |
70 {0, 0} /* End */ | 70 {0, NULL} /* End */ |
71 }; | 71 }; |
72 | 72 |
73 static const struct ChanType *svr_chantypes[] = { | 73 static const struct ChanType *svr_chantypes[] = { |
74 &svrchansess, | 74 &svrchansess, |
75 #if DROPBEAR_SVR_LOCALTCPFWD | 75 #if DROPBEAR_SVR_LOCALTCPFWD |