Socket.cpp
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:2k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*
  2.  *  OpenKore C++ Standard Library
  3.  *  Copyright (C) 2006  VCL
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Lesser General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library 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 GNU
  13.  *  Lesser General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Lesser General Public
  16.  *  License along with this library; if not, write to the Free Software
  17.  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18.  *  MA  02110-1301  USA
  19.  */
  20. #include <stdio.h>
  21. #include <assert.h>
  22. #include "../IO/IOException.h"
  23. #include "Socket.h"
  24. #ifdef WIN32
  25. #include "Win32/Socket.cpp"
  26. #else
  27. #include "Unix/Socket.h"
  28. #include "Unix/Socket.cpp"
  29. #endif
  30. namespace OSL {
  31. using namespace _Intern;
  32. SocketException::SocketException(const char *message, int code)
  33. : Exception(message, code)
  34. {
  35. }
  36. HostNotFoundException::HostNotFoundException(const char *message, int code)
  37. : Exception(message, code)
  38. {
  39. }
  40. void
  41. Socket::init() {
  42. #ifdef WIN32
  43. initWinSock();
  44. #endif
  45. }
  46. Socket *
  47. Socket::create(const char *address, unsigned short port) {
  48. assert(address != NULL);
  49. assert(port > 0);
  50. #ifdef WIN32
  51. return new WinSocket(address, port);
  52. #else
  53. return new UnixSocket(address, port);
  54. #endif
  55. }
  56. }