Remove tm.h and xm.h handling, as it wasn't used. Use nm.h only when needed.
[dragonfly.git] / lib / libc / net / inet_neta.c
blobfd92565aac6d86947b0fbac6a7152ecd1879d915
1 /*
2 * Copyright (c) 1996 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
15 * SOFTWARE.
17 * $FreeBSD: src/lib/libc/net/inet_neta.c,v 1.6.2.1 2001/04/21 14:53:04 ume Exp $
18 * $DragonFly: src/lib/libc/net/inet_neta.c,v 1.3 2005/11/13 02:04:47 swildner Exp $
21 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
26 #include <errno.h>
27 #include <stdio.h>
28 #include <string.h>
30 #ifdef SPRINTF_CHAR
31 # define SPRINTF(x) strlen(sprintf/**/x)
32 #else
33 # define SPRINTF(x) ((size_t)sprintf x)
34 #endif
37 * char *
38 * inet_neta(src, dst, size)
39 * format a in_addr_t network number into presentation format.
40 * return:
41 * pointer to dst, or NULL if an error occurred (check errno).
42 * note:
43 * format of ``src'' is as for inet_network().
44 * author:
45 * Paul Vixie (ISC), July 1996
47 char *
48 inet_neta(in_addr_t src, char *dst, size_t size)
50 char *odst = dst;
51 char *tp;
53 while (src & 0xffffffff) {
54 u_char b = (src & 0xff000000) >> 24;
56 src <<= 8;
57 if (b) {
58 if (size < sizeof "255.")
59 goto emsgsize;
60 tp = dst;
61 dst += SPRINTF((dst, "%u", b));
62 if (src != 0L) {
63 *dst++ = '.';
64 *dst = '\0';
66 size -= (size_t)(dst - tp);
69 if (dst == odst) {
70 if (size < sizeof "0.0.0.0")
71 goto emsgsize;
72 strcpy(dst, "0.0.0.0");
74 return (odst);
76 emsgsize:
77 errno = EMSGSIZE;
78 return (NULL);
82 * Weak aliases for applications that use certain private entry points,
83 * and fail to include <arpa/inet.h>.
85 #undef inet_neta
86 __weak_reference(__inet_neta, inet_neta);