作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 QUdpSocket 从服务器接收数据。当我使用 SFML 接收数据时,我可以通过 SocketUdp 接收数据,但是使用 qt 它不起作用。
void TheClass::Bind()
{
m_sock_receive = new QUdpSocket(this);
if (m_sock_receive->bind(QHostAddress::Any, port))
{
std::cout << "Bind: OK" << std::endl;
connect(m_sock_receive, SIGNAL(readyRead()), this, SLOT(QtReceive()));
}
else
std::cout << "Bind: NOK" << std::endl;
}
void TheClass::QtReceive()
{
std::cout << "Pending data !" << std::endl;
}
最佳答案
我会在绑定(bind)之前进行连接。绑定(bind)后,readyRead 可能会在连接调用完成之前触发。如果您不清空挂起的数据报,readyRead 将不会再次触发。
关于c++ - QUdpSocket : Cannot receive datagram,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13773374/
我是一名优秀的程序员,十分优秀!