Java程序辅导

C C++ Java Python Processing编程在线培训 程序编写 软件开发 视频讲解

客服在线QQ:2653320439 微信:ittutor Email:itutor@qq.com
wx: cjtutor
QQ: 2653320439
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