加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
udpnet.h 720 Bytes
一键复制 编辑 原始数据 按行查看 历史
NoCO 提交于 2014-12-17 10:59 . 修改了致命错误导致的异常
#ifndef UDPNET_H
#define UDPNET_H
#include <QObject>
#include <QtNetwork/QUdpSocket>
#include <QEventLoop>
#include <QDebug>
#include "config.h"
class UDPNet : public QObject
{
Q_OBJECT
public:
explicit UDPNet(QObject *parent = 0);
//发送消息
void sendMessage(QString message, QString ip, int port);
//发送消息
void sendMessage(QString message);
//绑定端口
int bindPort();
public slots:
//接受消息
void acceptMessage();
signals:
void haveMessaeg(QString);
private:
QUdpSocket *udpAccepct;
QUdpSocket *udpReaction;
quint16 port;
QEventLoop eventloop;
QString message;
Config config;
};
#endif // UDPNET_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化