handleMSG_CHANNEL_REQUEST method

void handleMSG_CHANNEL_REQUEST(
  1. MSG_CHANNEL_REQUEST msg
)

Logs any (unhandled) channel specific requests from server.

Implementation

void handleMSG_CHANNEL_REQUEST(MSG_CHANNEL_REQUEST msg) {
  if (tracePrint != null) {
    tracePrint(
        '$hostport: MSG_CHANNEL_REQUEST ${msg.requestType} wantReply=${msg.wantReply}');
  }
}