handleMSG_USERAUTH_REQUEST method
Implementation
void handleMSG_USERAUTH_REQUEST(MSG_USERAUTH_REQUEST msg) {
if (tracePrint != null) {
tracePrint('$hostport: MSG_USERAUTH_REQUEST: $msg');
}
if (userAuthRequest != null && userAuthRequest(msg)) {
writeCipher(MSG_USERAUTH_SUCCESS());
} else {
writeCipher(MSG_USERAUTH_FAILURE());
}
}