comparison svr-session.c @ 925:bae0b34bc059 pam

Better PAM through recursion
author Matt Johnston <matt@ucc.asn.au>
date Wed, 12 Mar 2014 23:40:02 +0800
parents 5bfce5dcd461
children 73ea0dce9a57
comparison
equal deleted inserted replaced
923:25b7ed9fe854 925:bae0b34bc059
60 {SSH_MSG_CHANNEL_CLOSE, recv_msg_channel_close}, 60 {SSH_MSG_CHANNEL_CLOSE, recv_msg_channel_close},
61 #ifdef USING_LISTENERS 61 #ifdef USING_LISTENERS
62 {SSH_MSG_CHANNEL_OPEN_CONFIRMATION, recv_msg_channel_open_confirmation}, 62 {SSH_MSG_CHANNEL_OPEN_CONFIRMATION, recv_msg_channel_open_confirmation},
63 {SSH_MSG_CHANNEL_OPEN_FAILURE, recv_msg_channel_open_failure}, 63 {SSH_MSG_CHANNEL_OPEN_FAILURE, recv_msg_channel_open_failure},
64 #endif 64 #endif
65 #ifdef ENABLE_SVR_PAM_AUTH
66 {SSH_MSG_USERAUTH_INFO_RESPONSE, recv_msg_userauth_info_response},
67 #endif
65 {0, 0} /* End */ 68 {0, 0} /* End */
66 }; 69 };
67 70
68 static const struct ChanType *svr_chantypes[] = { 71 static const struct ChanType *svr_chantypes[] = {
69 &svrchansess, 72 &svrchansess,