当前位置: 首页>>代码示例>>C++>>正文


C++ TcpSocket::socketDescriptor方法代码示例

本文整理汇总了C++中TcpSocket::socketDescriptor方法的典型用法代码示例。如果您正苦于以下问题:C++ TcpSocket::socketDescriptor方法的具体用法?C++ TcpSocket::socketDescriptor怎么用?C++ TcpSocket::socketDescriptor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TcpSocket的用法示例。


在下文中一共展示了TcpSocket::socketDescriptor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: incomingConnection

/**
 *函数介绍:有请求连接,新建一个socket
 *输入参数:int socketId,新建socket的SocketDescriptor
 *返回值:无
 */
void TcpServer::incomingConnection(int socketId)
{
    TcpSocket *socket = new TcpSocket(socketId,this);
	//设置socket描述符
    socket->setSocketDescriptor(socketId);
	//写入系统日志
	//Global::systemLog->append(tr("网络通信服务端有新的连接请求"), QString(tr("服务端接收新的连接请求,socket描述符 = %1.")).arg(socketId), SystemLog::INFO);

    qDebug()<<"服务端有新的连接,socketDescriptor:"<<socket->socketDescriptor();
    //新建了一个socket连接
    addServerSocket(socketId);


    //获得客户端数据
    connect(socket, SIGNAL(haveReadDataSignal(QByteArray,int)), this, SLOT(getClientMessage(QByteArray,int)));
	//信号槽:跟踪服务端Socket状态
    connect(socket,SIGNAL(stateChanged(QAbstractSocket::SocketState)),this,SLOT(getServerSocketState(QAbstractSocket::SocketState)));
    //信号槽:服务端socket出现错误
    connect(socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(serverSocketError(QAbstractSocket::SocketError)));

    //与客户端断开某socket连接,服务端状态发生改变
    connect(socket, SIGNAL(disconnectedBeforeDeleteSignal(int)), this, SLOT(removeServerSocket(int)));
    //与客户端断开连接,输出服务器当前连接
    //connect(socket, SIGNAL(disconnectedBeforeDeleteSignal(int)), this, SLOT(getAllConnection()));	
	//与客户端连接上后,输出服务器当前连接
    //connect(socket, SIGNAL(connectedForServerSignal(int)), this, SLOT(getAllConnection()));
    //与客户端连接上后,输出服务器当前连接
    //connect(socket, SIGNAL(connectedForServerSignal(int)), this, SLOT(addServerSocket(int)));

}
开发者ID:PonyYu,项目名称:OCR_LIVE_HISTORY,代码行数:35,代码来源:TcpServer.cpp

示例2: getServerSocket

/**
 *函数介绍:获取服务器上指定描述符的socket指针
 *输入参数:descriptor,socket描述符.
 *返回值:如果找到指定socket,则返回该指针;否则返回0.
 */
TcpSocket* TcpServer::getServerSocket(int descriptor)
{
    //获取tcpServer所有serverSocket对象
    QList<TcpSocket*> serverSocketList = this->findChildren<TcpSocket*>();
    for (int i=0;i<serverSocketList.count();i++)
    {
        TcpSocket *item = serverSocketList.at(i);
        //如果找到指定socket,则返回该指针
        if(item->socketDescriptor()== descriptor)
        {
            //qDebug() << "已寻找到通信服务端上socket指针 socketDescriptor:" << item->socketDescriptor();
            return item;
        }


    }
    qDebug() << "未寻找到通信服务端上socket指针";
    //未找到指定socket,返回0
    return 0;
}
开发者ID:PonyYu,项目名称:OCR_LIVE_HISTORY,代码行数:25,代码来源:TcpServer.cpp


注:本文中的TcpSocket::socketDescriptor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。