This commit is contained in:
wujiawei 2024-09-21 17:10:11 +08:00
parent 54848f5bc2
commit 30dfaa8dd1

View File

@ -33,7 +33,7 @@ public class ClientHandleDistributeClientTransferClientRequestTypeAdvanced exten
// 把数据转到真实服务
ByteBuf buf = channel.config().getAllocator().buffer(nettyProxyMsg.getData().length);
buf.writeBytes(nettyProxyMsg.getData());
log.info("client permeate client send request byte:{} to real socket",new String(nettyProxyMsg.getData()));
log.info("client permeate client send request to real socket byte:{} ",new String(nettyProxyMsg.getData()));
nextChannel.writeAndFlush(buf);
}