We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdf621c commit 030909eCopy full SHA for 030909e
1 file changed
src/internal.c
@@ -8960,6 +8960,12 @@ static int DoChannelOpen(WOLFSSH* ssh,
8960
if (ssh->ctx->channelOpenCb) {
8961
ret = ssh->ctx->channelOpenCb(newChannel, ssh->channelOpenCtx);
8962
}
8963
+ else {
8964
+ WLOG(WS_LOG_WARN, "No channel open callback set "
8965
+ "(call wolfSSH_CTX_SetChannelOpenCb()), accepting "
8966
+ "channel open by default; typeId=%u, peerChannelId=%u",
8967
+ (word32)typeId, peerChannelId);
8968
+ }
8969
if (ssh->channelListSz == 0)
8970
ssh->defaultPeerChannelId = peerChannelId;
8971
#ifdef WOLFSSH_FWD
0 commit comments