inet.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:8k
源码类别:

Symbian

开发平台:

Visual C++

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