]>
git.saurik.com Git - apple/libc.git/blob - net/nsap_addr-fbsd.c
2 * Copyright (c) 1996, 1998 by Internet Software Consortium.
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
9 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
10 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
11 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
12 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
13 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
14 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
18 #include <sys/cdefs.h>
19 __FBSDID("$FreeBSD: src/lib/libc/net/nsap_addr.c,v 1.9 2002/03/22 21:52:29 obrien Exp $");
21 #include "xlocale_private.h"
23 #include <sys/types.h>
24 #include <sys/param.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <arpa/inet.h>
28 #include <arpa/nameser.h>
37 return (c
- (((c
>= '0') && (c
<= '9')) ? '0' : '7'));
41 inet_nsap_addr(ascii
, binary
, maxlen
)
48 locale_t loc
= __current_locale();
50 while ((c
= *ascii
++) != '\0' && len
< (u_int
)maxlen
) {
51 if (c
== '.' || c
== '+' || c
== '/')
55 if (islower_l(c
, loc
))
56 c
= toupper_l(c
, loc
);
57 if (isxdigit_l(c
, loc
)) {
61 c
= toupper_l(c
, loc
);
62 if (isxdigit_l(c
, loc
)) {
63 *binary
++ = (nib
<< 4) | xtob(c
);
78 inet_nsap_ntoa(binlen
, binary
, ascii
)
85 static char *tmpbuf
= NULL
;
89 tmpbuf
= malloc(255*3);
103 for (i
= 0; i
< binlen
; i
++) {
105 *ascii
++ = nib
+ (nib
< 10 ? '0' : '7');
106 nib
= *binary
++ & 0x0f;
107 *ascii
++ = nib
+ (nib
< 10 ? '0' : '7');
108 if (((i
% 2) == 0 && (i
+ 1) < binlen
))
116 * Weak aliases for applications that use certain private entry points,
117 * and fail to include <arpa/inet.h>.
119 #undef inet_nsap_addr
120 __weak_reference(__inet_nsap_addr
, inet_nsap_addr
);
121 #undef inet_nsap_ntoa
122 __weak_reference(__inet_nsap_ntoa
, inet_nsap_ntoa
);