inet.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer and/or licensor of the Original Code and owns the copyrights 
  21.  * in the portions it created.  
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. /*
  36.  * ++Copyright++ 1983, 1990, 1993
  37.  * -
  38.  * Copyright (c) 1983, 1990, 1993
  39.  *    The Regents of the University of California.  All rights reserved.
  40.  * 
  41.  * Redistribution and use in source and binary forms, with or without
  42.  * modification, are permitted provided that the following conditions
  43.  * are met:
  44.  * 1. Redistributions of source code must retain the above copyright
  45.  *    notice, this list of conditions and the following disclaimer.
  46.  * 2. Redistributions in binary form must reproduce the above copyright
  47.  *    notice, this list of conditions and the following disclaimer in the
  48.  *    documentation and/or other materials provided with the distribution.
  49.  * 3. All advertising materials mentioning features or use of this software
  50.  *    must display the following acknowledgement:
  51.  *  This product includes software developed by the University of
  52.  *  California, Berkeley and its contributors.
  53.  * 4. Neither the name of the University nor the names of its contributors
  54.  *    may be used to endorse or promote products derived from this software
  55.  *    without specific prior written permission.
  56.  * 
  57.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  58.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  59.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  60.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  61.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  62.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  63.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  64.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  65.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  66.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  67.  * SUCH DAMAGE.
  68.  * -
  69.  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
  70.  * 
  71.  * Permission to use, copy, modify, and distribute this software for any
  72.  * purpose with or without fee is hereby granted, provided that the above
  73.  * copyright notice and this permission notice appear in all copies, and that
  74.  * the name of Digital Equipment Corporation not be used in advertising or
  75.  * publicity pertaining to distribution of the document or software without
  76.  * specific, written prior permission.
  77.  * 
  78.  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
  79.  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  80.  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
  81.  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  82.  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  83.  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  84.  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  85.  * SOFTWARE.
  86.  * -
  87.  * --Copyright--
  88.  */
  89. #include "hlxclib/stdio.h"
  90. #include "hlxclib/ctype.h"
  91. #include "hxtypes.h"
  92. #include "hlxclib/sys/types.h"
  93. #include "hlxclib/sys/socket.h"
  94. #include "hxassert.h"
  95. #include "hxheap.h"
  96. #ifdef _DEBUG
  97. #undef HX_THIS_FILE
  98. static const char HX_THIS_FILE[] = __FILE__;
  99. #endif
  100. #ifdef _MACINTOSH
  101. #include "macsockets.h"
  102. #include "hxtypes.h"
  103. typedef ULONG32  u_long;
  104. #ifndef _MAC_MACHO
  105. typedef UINT16 u_int;
  106. #endif
  107. // note that with mach-o u_int is defined in /usr/include/sys/types.h as
  108. // a (four-byte) unsigned int. Without mach-o u_int is defined here to be
  109. // a (two-byte) unsigned int. I don't think that's a problem but it's
  110. // worth noting. xxxbobclark
  111. #define isascii isprint
  112. #endif
  113. /* 
  114.  * Check whether "cp" is a valid ascii representation
  115.  * of an Internet address and convert to a binary address.
  116.  * Returns 1 if the address is valid, 0 if not.
  117.  * This replaces inet_addr, the return value from which
  118.  * cannot distinguish between failure and a local broadcast address.
  119.  */
  120. int
  121. inet_aton(register const char *cp, struct in_addr* addr)
  122. {
  123. register u_long val;
  124. register int base, n;
  125. register char c;
  126. u_int parts[4];
  127. register u_int *pp = parts;
  128. c = *cp;
  129. for (;;) {
  130. /*
  131.  * Collect number up to ``.''.
  132.  * Values are specified as for C:
  133.  * 0x=hex, 0=octal, isdigit=decimal.
  134.  */
  135. if (!isdigit(c))
  136. return (0);
  137. val = 0; base = 10;
  138. if (c == '0') {
  139. c = *++cp;
  140. if (c == 'x' || c == 'X')
  141. base = 16, c = *++cp;
  142. else
  143. base = 8;
  144. }
  145. for (;;) {
  146. if (isascii(c) && isdigit(c)) {
  147. val = (val * base) + (c - '0');
  148. c = *++cp;
  149. } else if (base == 16 && isascii(c) && isxdigit(c)) {
  150. val = (val << 4) |
  151. (c + 10 - (islower(c) ? 'a' : 'A'));
  152. c = *++cp;
  153. } else
  154. break;
  155. }
  156. if (c == '.') {
  157. /*
  158.  * Internet format:
  159.  * a.b.c.d
  160.  * a.b.c (with c treated as 16 bits)
  161.  * a.b (with b treated as 24 bits)
  162.  */
  163. if (pp >= parts + 3)
  164. return (0);
  165. *pp++ = HX_SAFEINT(val);
  166. c = *++cp;
  167. } else
  168. break;
  169. }
  170. /*
  171.  * Check for trailing characters.
  172.  */
  173. if (c != '' && (!isascii(c) || !isspace(c)))
  174. return (0);
  175. /*
  176.  * Concoct the address according to
  177.  * the number of parts specified.
  178.  */
  179. n = pp - parts + 1;
  180. switch (n) {
  181. case 0:
  182. return (0); /* initial nondigit */
  183. case 1: /* a -- 32 bits */
  184. break;
  185. case 2: /* a.b -- 8.24 bits */
  186. if (val > 0xffffff)
  187. return (0);
  188. val |= parts[0] << 24;
  189. break;
  190. case 3: /* a.b.c -- 8.8.16 bits */
  191. if (val > 0xffff)
  192. return (0);
  193. val |= (parts[0] << 24) | (parts[1] << 16);
  194. break;
  195. case 4: /* a.b.c.d -- 8.8.8.8 bits */
  196. if (val > 0xff)
  197. return (0);
  198. val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8);
  199. break;
  200. }
  201. if (addr)
  202. addr->s_addr = htonl(val);
  203. return (1);
  204. }