出于调试原因,我想在控制台中显示我的传出数据包。顺便说一句,数据包正确到达服务器。但是,如果我希望它们在发送前在控制台中显示,那么它什么也没有显示:
ACE_Message_Block *m_Header;
...
size_t send_len = m_Header->length(); // Size of the Message Block
char* output = m_Header->rd_ptr();
printf("Output: %s", output); // Trying to show it in Console
// Send it
server.send(m_Header->rd_ptr(), send_len);
有人有想法吗?