TCPSocket.h Source File Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members TCPSocket.hGo to the documentation of this file. 00001 #ifndef _SOLARIS_TCP_SOCKET_H_
00002 #define _SOLARIS_TCP_SOCKET_H_
00003
00004 #include "OSDependent/OSDependent.h"
00005 #include "OSDependent/Posix/PosixTCPSocket.h"
00006 #include "OSDependent/Support/TCPSocketStream.h"
00007
00008 /*
00009 * Solaris implementation of a TCP socket.
00010 */
00011 class ClassExport TCPSocket : public PosixTCPSocket, public TCPSocketStream {
00012 friend class PosixTCPServerSocket;
00013
00014 protected:
00015 TCPSocket(int fd) : PosixTCPSocket(fd) {}
00016
00017 public:
00018 TCPSocket(u_short port, const char *addr) :
00019 PosixTCPSocket(port, addr, 1) {}
00020 };
00021
00022 #endif // _SOLARIS_TCP_SOCKET_H_
Generated on Mon Oct 7 09:33:33 2002 for Gaia by 1.2.13.1 written by Dimitri van Heesch, © 1997-2001