handleMSG_USERAUTH_REQUEST method

void handleMSG_USERAUTH_REQUEST(
  1. MSG_USERAUTH_REQUEST msg
)

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());
  }
}