source: rtems-libbsd/freebsd/lib/libc/inet/inet_neta.c @ 165dd8e

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 165dd8e was 165dd8e, checked in by Sebastian Huber <sebastian.huber@…>, on 04/08/15 at 13:37:49

Update to FreeBSD Stable/9 2015-04-08

  • Property mode set to 100644
File size: 2.4 KB
Line 
1#include <machine/rtems-bsd-user-space.h>
2
3/*
4 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (c) 1996,1999 by Internet Software Consortium.
6 *
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.
10 *
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.
18 */
19
20#if defined(LIBC_SCCS) && !defined(lint)
21static const char rcsid[] = "$Id: inet_neta.c,v 1.3 2005/04/27 04:56:20 sra Exp $";
22#endif
23#include <sys/cdefs.h>
24__FBSDID("$FreeBSD$");
25
26#include "port_before.h"
27
28#include <rtems/bsd/sys/types.h>
29#include <sys/socket.h>
30#include <netinet/in.h>
31#include <arpa/inet.h>
32
33#include <errno.h>
34#include <stdio.h>
35#include <string.h>
36
37#include "port_after.h"
38
39#ifdef SPRINTF_CHAR
40# define SPRINTF(x) strlen(sprintf/**/x)
41#else
42# define SPRINTF(x) ((size_t)sprintf x)
43#endif
44
45/*%
46 * char *
47 * inet_neta(src, dst, size)
48 *      format an in_addr_t network number into presentation format.
49 * return:
50 *      pointer to dst, or NULL if an error occurred (check errno).
51 * note:
52 *      format of ``src'' is as for inet_network().
53 * author:
54 *      Paul Vixie (ISC), July 1996
55 */
56char *
57inet_neta(src, dst, size)
58        in_addr_t src;
59        char *dst;
60        size_t size;
61{
62        char *odst = dst;
63        char *tp;
64
65        while (src & 0xffffffff) {
66                u_char b = (src & 0xff000000) >> 24;
67
68                src <<= 8;
69                if (b) {
70                        if (size < sizeof "255.")
71                                goto emsgsize;
72                        tp = dst;
73                        dst += SPRINTF((dst, "%u", b));
74                        if (src != 0L) {
75                                *dst++ = '.';
76                                *dst = '\0';
77                        }
78                        size -= (size_t)(dst - tp);
79                }
80        }
81        if (dst == odst) {
82                if (size < sizeof "0.0.0.0")
83                        goto emsgsize;
84                strcpy(dst, "0.0.0.0");
85        }
86        return (odst);
87
88 emsgsize:
89        errno = EMSGSIZE;
90        return (NULL);
91}
92
93/*
94 * Weak aliases for applications that use certain private entry points,
95 * and fail to include <arpa/inet.h>.
96 */
97#undef inet_neta
98__weak_reference(__inet_neta, inet_neta);
99
100/*! \file */
Note: See TracBrowser for help on using the repository browser.