NdbTCP.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <ndb_global.h>
  14. #include <my_net.h>
  15. #include <NdbTCP.h>
  16. extern "C"
  17. int 
  18. Ndb_getInAddr(struct in_addr * dst, const char *address) {
  19.   //  DBUG_ENTER("Ndb_getInAddr");
  20.   {
  21.     int tmp_errno;
  22.     struct hostent tmp_hostent, *hp;
  23.     char buff[GETHOSTBYNAME_BUFF_SIZE];
  24.     hp = my_gethostbyname_r(address,&tmp_hostent,buff,sizeof(buff),
  25.     &tmp_errno);
  26.     if (hp)
  27.     {
  28.       memcpy(dst, hp->h_addr, min(sizeof(*dst), (size_t) hp->h_length));
  29.       my_gethostbyname_r_free();
  30.       return 0; //DBUG_RETURN(0);
  31.     }
  32.     my_gethostbyname_r_free();
  33.   }
  34.   /* Try it as aaa.bbb.ccc.ddd. */
  35.   dst->s_addr = inet_addr(address);
  36.   if (dst->s_addr != 
  37. #ifdef INADDR_NONE
  38.       INADDR_NONE
  39. #else
  40.       -1
  41. #endif
  42.       )
  43.   {
  44.     return 0; //DBUG_RETURN(0);
  45.   }
  46.   //  DBUG_PRINT("error",("inet_addr(%s) - %d - %s",
  47.   //       address, errno, strerror(errno)));
  48.   return -1; //DBUG_RETURN(-1);
  49. }
  50. #ifndef DBUG_OFF
  51. extern "C"
  52. int NDB_CLOSE_SOCKET(int fd)
  53. {
  54.   DBUG_PRINT("info", ("NDB_CLOSE_SOCKET(%d)", fd));
  55.   return _NDB_CLOSE_SOCKET(fd);
  56. }
  57. #endif
  58. #if 0
  59. int 
  60. Ndb_getInAddr(struct in_addr * dst, const char *address) {
  61.   struct hostent host, * hostPtr;
  62.   char buf[1024];
  63.   int h_errno;
  64.   hostPtr = gethostbyname_r(address, &host, &buf[0], 1024, &h_errno);
  65.   if (hostPtr != NULL) {
  66.     dst->s_addr = ((struct in_addr *) *hostPtr->h_addr_list)->s_addr;
  67.     return 0;
  68.   }
  69.   
  70.   /* Try it as aaa.bbb.ccc.ddd. */
  71.   dst->s_addr = inet_addr(address);
  72.   if (dst->s_addr != -1) {
  73.     return 0;
  74.   }
  75.   return -1;
  76. }
  77. #endif