sockets.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:4k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * sockets.h
  3.  *
  4.  * Berkley Sockets classes.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: sockets.h,v $
  30.  * Revision 1.13  1998/11/30 02:51:59  robertj
  31.  * New directory structure
  32.  *
  33.  * Revision 1.12  1998/09/23 06:19:58  robertj
  34.  * Added open source copyright license.
  35.  *
  36.  * Revision 1.11  1998/08/21 05:25:21  robertj
  37.  * Added ethernet socket in right place this time.
  38.  *
  39.  * Revision 1.10  1998/08/20 06:02:35  robertj
  40.  * Added direct ethernet socket type.
  41.  *
  42.  * Revision 1.9  1996/10/08 13:05:38  robertj
  43.  * More IPX support.
  44.  *
  45.  * Revision 1.8  1996/09/14 13:09:44  robertj
  46.  * Major upgrade:
  47.  *   rearranged sockets to help support IPX.
  48.  *   added indirect channel class and moved all protocols to descend from it,
  49.  *   separating the protocol from the low level byte transport.
  50.  *
  51.  * Revision 1.7  1996/08/08 10:08:53  robertj
  52.  * Directory structure changes for common files.
  53.  *
  54.  * Revision 1.6  1996/05/15 10:13:15  robertj
  55.  * Added ICMP protocol socket, getting common ancestor to UDP.
  56.  *
  57.  * Revision 1.5  1995/06/04 12:36:55  robertj
  58.  * Added application layer protocol sockets.
  59.  *
  60.  * Revision 1.4  1994/08/23 11:32:52  robertj
  61.  * Oops
  62.  *
  63.  * Revision 1.3  1994/08/22  00:46:48  robertj
  64.  * Added pragma fro GNU C++ compiler.
  65.  *
  66.  * Revision 1.2  1994/08/21  23:43:02  robertj
  67.  * Added telnet.
  68.  *
  69.  * Revision 1.1  1994/07/25  03:36:03  robertj
  70.  * Initial revision
  71.  *
  72.  * Revision 1.3  1994/07/21  12:17:41  robertj
  73.  * Sockets.
  74.  *
  75.  * Revision 1.2  1994/06/25  12:27:39  robertj
  76.  * *** empty log message ***
  77.  *
  78.  * Revision 1.1  1994/04/01  14:38:42  robertj
  79.  * Initial revision
  80.  *
  81.  */
  82. #ifndef _SOCKETS_H
  83. #define _SOCKETS_H
  84. #ifdef __GNUC__
  85. #pragma interface
  86. #endif
  87. ///////////////////////////////////////////////////////////////////////////////
  88. // PSocket
  89. #include <ptlib/socket.h>
  90. ///////////////////////////////////////////////////////////////////////////////
  91. // PIPSocket
  92. #include <ptlib/ipsock.h>
  93. ///////////////////////////////////////////////////////////////////////////////
  94. // PIPDatagramSocket
  95. #include <ptlib/ipdsock.h>
  96. ///////////////////////////////////////////////////////////////////////////////
  97. // PUDPSocket
  98. #include <ptlib/udpsock.h>
  99. ///////////////////////////////////////////////////////////////////////////////
  100. // PICMPSocket
  101. #include <ptlib/icmpsock.h>
  102. ///////////////////////////////////////////////////////////////////////////////
  103. // PTCPSocket
  104. #include <ptlib/tcpsock.h>
  105. #ifdef PIPX
  106. ///////////////////////////////////////////////////////////////////////////////
  107. // PIPXSocket
  108. #include <ptlib/ipxsock.h>
  109. ///////////////////////////////////////////////////////////////////////////////
  110. // PSPXSocket
  111. #include <ptlib/spxsock.h>
  112. #endif // PIPX
  113. ///////////////////////////////////////////////////////////////////////////////
  114. // PEthSocket
  115. #include <ptlib/ethsock.h>
  116. #endif // _SOCKETS_H
  117. // End Of File ///////////////////////////////////////////////////////////////