Home | History | Annotate | Download | only in execserver

Lines Matching defs:handler

53 		ConnectionHandler* handler = DE_NULL;
57 handler = createHandler(clientSocket, clientAddr);
67 addLiveConnection(handler);
71 delete handler;
75 // Start handler.
76 handler->start();
86 void TcpServer::connectionDone (ConnectionHandler* handler)
90 std::vector<ConnectionHandler*>::iterator liveListPos = std::find(m_liveConnections.begin(), m_liveConnections.end(), handler);
95 m_doneConnections.push_back(handler);
98 void TcpServer::addLiveConnection (ConnectionHandler* handler)
101 m_liveConnections.push_back(handler);