source: trunk/libs/newlib/src/newlib/libc/sys/linux/net/nsap_addr.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.3 KB
Line 
1/*
2 * Copyright (c) 1996-1999 by Internet Software Consortium.
3 *
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.
7 *
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
15 * SOFTWARE.
16 */
17
18#if defined(LIBC_SCCS) && !defined(lint)
19static const char rcsid[] = "$BINDId: nsap_addr.c,v 8.10 1999/10/13 16:39:28 vixie Exp $";
20#endif /* LIBC_SCCS and not lint */
21
22#include <sys/types.h>
23#include <sys/param.h>
24#include <sys/socket.h>
25
26#include <netinet/in.h>
27#include <arpa/inet.h>
28#include <arpa/nameser.h>
29
30#include <ctype.h>
31#include <resolv.h>
32
33#include "libc-symbols.h"
34
35static char
36xtob(int c) {
37        return (c - (((c >= '0') && (c <= '9')) ? '0' : '7'));
38}
39
40u_int
41inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) {
42        u_char c, nib;
43        u_int len = 0;
44
45        while ((c = *ascii++) != '\0' && len < (u_int)maxlen) {
46                if (c == '.' || c == '+' || c == '/')
47                        continue;
48                if (!isascii(c))
49                        return (0);
50                c = toupper(c);
51                if (isxdigit(c)) {
52                        nib = xtob(c);
53                        c = *ascii++;
54                        if (c != '\0') {
55                                c = toupper(c);
56                                if (isxdigit(c)) {
57                                        *binary++ = (nib << 4) | xtob(c);
58                                        len++;
59                                } else
60                                        return (0);
61                        }
62                        else
63                                return (0);
64                }
65                else
66                        return (0);
67        }
68        return (len);
69}
70
71char *
72inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) {
73        int nib;
74        int i;
75        static char tmpbuf[255*2 + 128];
76        char *start;
77
78        if (ascii)
79                start = ascii;
80        else {
81                ascii = tmpbuf;
82                start = tmpbuf;
83        }
84
85        if (binlen > 255)
86                binlen = 255;
87
88        for (i = 0; i < binlen; i++) {
89                nib = *binary >> 4;
90                *ascii++ = nib + (nib < 10 ? '0' : '7');
91                nib = *binary++ & 0x0f;
92                *ascii++ = nib + (nib < 10 ? '0' : '7');
93                if (((i % 2) == 0 && (i + 1) < binlen))
94                        *ascii++ = '.';
95        }
96        *ascii = '\0';
97        return (start);
98}
Note: See TracBrowser for help on using the repository browser.