:6.313KB : :1 :2022-08-30 17:30:32
QT的TCP服务器DEMO如果开发者对于本文件有需要的可以参考。创建TCP服务器,等待客户端连接,接收到客户端后回复消息。
MyTcpServer::MyTcpServer(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MyTcpServer)
{
ui->setupUi(this);
tcpServer = new QTcpServer(this);
ui->edtIP->setText(QNetworkInterface().allAddresses().at(1).toString()); //获取本地IP
ui->btnConnect->setEnabled(true);
ui->btnSend->setEnabled(false);
connect(tcpServer, SIGNAL(newConnection()), this, SLOT(NewConnectionSlot()));
}
12-18Java实例TCP服务器端代码
10-22TCP服务器完整代码基于IOCP实现
12-30IOCP/TCP服务器传送数据套接字