psock.c
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1999  Philippe Dubois (pdubois1@hotmail.com)
  3.  * Copyright (C) 1999  Ross Combs (rocombs@cs.nmsu.edu)
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version 2
  8.  * of the License, or (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  */
  19. #include "common/setup_before.h"
  20. #ifdef WIN32
  21. #include <Winsock2.h>
  22. #include "psock.h"
  23. #include "common/setup_after.h"
  24. extern int psock_init(void)
  25. {
  26.     WORD    wVersionRequested;
  27.     WSADATA wsaData;
  28.     
  29.     wVersionRequested = MAKEWORD(2, 2);
  30.     
  31.     if (WSAStartup(wVersionRequested, &wsaData)!=0)
  32.     {
  33. /* FIXME: Tell the user that we could not find a usable WinSock DLL. */
  34. return -1;
  35.     }
  36.     
  37.     return 0;
  38. }
  39. /* EDITED BY CREEPLORD */
  40. extern int psock_deinit(void)
  41. {
  42.    
  43.     if (WSACleanup()!=0)
  44.     {
  45.         return -1;
  46.     }
  47.     return 0;
  48. }
  49. /* END OF EDIT */
  50. extern int psock_ctl(int sd, int mode)
  51. {
  52.     unsigned long nParam=1; /* u_long or DWORD or what? */
  53.     
  54.     return ioctlsocket(sd,mode,&nParam);
  55. }
  56. #else
  57. #ifdef HAVE_UNISTD_H
  58. # include <unistd.h>
  59. #endif
  60. #ifdef HAVE_FCNTL_H
  61. # include <fcntl.h>
  62. #else
  63. # ifdef HAVE_SYS_FILE_H
  64. #  include <sys/file.h>
  65. # endif
  66. #endif
  67. #include "psock.h"
  68. #include "common/setup_after.h"
  69. extern int psock_ctl(int sd, long int mode)
  70. {
  71.     long int oldmode;
  72.     
  73.     if ((oldmode = fcntl(sd,F_GETFL))<0)
  74. oldmode = 0;
  75.     oldmode |= mode;
  76.     return fcntl(sd,F_SETFL,mode);
  77. }
  78. #endif