4 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (c) 1996-1999 by Internet Software Consortium.
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #if defined(LIBC_SCCS) && !defined(lint)
21 static const char rcsid
[] = "Id: nsap_addr.c,v 1.5 2005/07/28 06:51:48 marka Exp";
22 #endif /* LIBC_SCCS and not lint */
24 #include "port_before.h"
26 #include <sys/types.h>
27 #include <sys/param.h>
28 #include <sys/socket.h>
30 #include <netinet/in.h>
31 #include <arpa/inet.h>
32 #include <arpa/nameser.h>
36 #include <resolv_mt.h>
38 #include "port_after.h"
42 return (c
- (((c
>= '0') && (c
<= '9')) ? '0' : '7'));
46 inet_nsap_addr(const char *ascii
, u_char
*binary
, int maxlen
) {
50 if (ascii
[0] != '0' || (ascii
[1] != 'x' && ascii
[1] != 'X'))
54 while ((c
= *ascii
++) != '\0' && len
< (u_int
)maxlen
) {
55 if (c
== '.' || c
== '+' || c
== '/')
67 *binary
++ = (nib
<< 4) | xtob(c
);
82 inet_nsap_ntoa(int binlen
, const u_char
*binary
, char *ascii
) {
85 char *tmpbuf
= inet_nsap_ntoa_tmpbuf
;
101 for (i
= 0; i
< binlen
; i
++) {
103 *ascii
++ = nib
+ (nib
< 10 ? '0' : '7');
104 nib
= *binary
++ & 0x0f;
105 *ascii
++ = nib
+ (nib
< 10 ? '0' : '7');
106 if (((i
% 2) == 0 && (i
+ 1) < binlen
))