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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * socket.h
  3.  *
  4.  * Berkley sockets ancestor class.
  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: socket.h,v $
  30.  * Revision 1.16  1999/02/16 08:10:33  robertj
  31.  * MSVC 6.0 compatibility changes.
  32.  *
  33.  * Revision 1.15  1998/11/30 02:55:31  robertj
  34.  * New directory structure
  35.  *
  36.  * Revision 1.14  1998/09/24 03:30:25  robertj
  37.  * Added open software license.
  38.  *
  39.  * Revision 1.13  1998/08/27 02:06:42  robertj
  40.  * GNU C library v6 compatibility
  41.  *
  42.  * Revision 1.12  1996/10/08 13:05:01  robertj
  43.  * More IPX support.
  44.  *
  45.  * Revision 1.11  1996/09/14 13:09:46  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.10  1996/08/08 10:09:14  robertj
  52.  * Directory structure changes for common files.
  53.  *
  54.  * Revision 1.9  1996/07/27 04:08:58  robertj
  55.  * Created static version of ConvertOSError().
  56.  *
  57.  * Revision 1.8  1996/03/31 09:11:40  robertj
  58.  * Fixed major performance problem in timeout read/write to sockets.
  59.  *
  60.  * Revision 1.7  1995/12/10 11:49:43  robertj
  61.  * Numerous fixes for sockets.
  62.  *
  63.  * Revision 1.6  1995/03/12 05:00:01  robertj
  64.  * Re-organisation of DOS/WIN16 and WIN32 platforms to maximise common code.
  65.  * Used built-in equate for WIN32 API (_WIN32).
  66.  *
  67.  * Revision 1.5  1995/01/02  12:16:22  robertj
  68.  * Moved constructor to platform dependent code.
  69.  *
  70.  * Revision 1.4  1994/12/12  10:10:17  robertj
  71.  * Changed so can compile if no winsock available.
  72.  *
  73.  * Revision 1.3  1994/10/30  11:24:22  robertj
  74.  * Fixed DOS version of header.
  75.  *
  76.  * Revision 1.2  1994/10/23  05:36:51  robertj
  77.  * Sockets implementation.
  78.  *
  79.  * Revision 1.1  1994/08/22  00:18:02  robertj
  80.  * Initial revision
  81.  *
  82.  * Revision 1.1  1994/07/27  06:00:10  robertj
  83.  * Initial revision
  84.  *
  85.  */
  86. #ifndef _PSOCKET
  87. #if (defined(_WINDOWS) && defined(PHAS_WINSOCK)) || defined(_WIN32)
  88. #include <winsock.h>
  89. #define PIPX
  90. #endif
  91. #include "../../socket.h"
  92.   public:
  93.     ~PSocket();
  94.       // close a socket
  95.     virtual BOOL Read(void * buf, PINDEX len);
  96.     virtual BOOL Write(const void * buf, PINDEX len);
  97.     virtual BOOL Close();
  98.   protected:
  99.     BOOL ConvertOSError(int error);
  100.     static BOOL ConvertOSError(int error, Errors & lastError, int & osError);
  101.   private:
  102. #ifdef PHAS_WINSOCK
  103.     static BOOL WinSockStarted;
  104. #endif
  105. };
  106. class PWinSock : public PSocket
  107. {
  108.   PCLASSINFO(PWinSock, PSocket)
  109. // Must be one and one only instance of this class, and it must be static!.
  110.   public:
  111.     PWinSock();
  112.     ~PWinSock();
  113.   private:
  114.     virtual BOOL OpenSocket();
  115.     virtual const char * GetProtocolName() const;
  116. };
  117. typedef int socklen_t;
  118. #endif
  119. // End Of File ///////////////////////////////////////////////////////////////