/***************************************************************************** ************************* AIRBORNE SYSTEMS ************************* ************************* COMPUTING DEVICES CANADA ************************* ****************************************************************************** Filename: CServerSocket.h Project: LOCATOR Purpose: C++ definition for the LOCATOR CServerSocket class. This class provides the functionality for server sockets, which are the sockets a process listens on for connection requests. Release: V1.0 Author: Denis Dumas Date: 04-Aug-1999 Modified: *****************************************************************************/ #ifndef __CSERVERSOCKET_H__ #define __CSERVERSOCKET_H__ #include "CSocket.h" #include "CClientSocket.h" class CServerSocket : public CSocket { public : CServerSocket(); virtual ~CServerSocket(); int CheckServerSocket ( bool * const pHasData ); CClientSocket * Accept(); int Bind ( const unsigned short pPort ); int Listen(); }; #endif