- Test m_pkthdr.fw_flags against DUMMYNET_MBUF_TAGGED before trying to locate
[dragonfly/netmp.git] / lib / libatm / ip_addr.c
blobc6ac4a16e805f6cb8798d94f5a9861e692e3e241
1 /*
3 * ===================================
4 * HARP | Host ATM Research Platform
5 * ===================================
8 * This Host ATM Research Platform ("HARP") file (the "Software") is
9 * made available by Network Computing Services, Inc. ("NetworkCS")
10 * "AS IS". NetworkCS does not provide maintenance, improvements or
11 * support of any kind.
13 * NETWORKCS MAKES NO WARRANTIES OR REPRESENTATIONS, EXPRESS OR IMPLIED,
14 * INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
15 * AND FITNESS FOR A PARTICULAR PURPOSE, AS TO ANY ELEMENT OF THE
16 * SOFTWARE OR ANY SUPPORT PROVIDED IN CONNECTION WITH THIS SOFTWARE.
17 * In no event shall NetworkCS be responsible for any damages, including
18 * but not limited to consequential damages, arising from or relating to
19 * any use of the Software or related support.
21 * Copyright 1994-1998 Network Computing Services, Inc.
23 * Copies of this Software may be made, however, the above copyright
24 * notice must be reproduced on all copies.
26 * @(#) $FreeBSD: src/lib/libatm/ip_addr.c,v 1.3.2.1 2001/09/28 16:52:10 dillon Exp $
27 * @(#) $DragonFly: src/lib/libatm/ip_addr.c,v 1.4 2007/11/25 01:28:22 swildner Exp $
31 #include <sys/cdefs.h>
34 * User Space Library Functions
35 * ----------------------------
37 * IP address utilities
41 #include <sys/types.h>
42 #include <sys/param.h>
43 #include <sys/socket.h>
44 #include <net/if.h>
45 #include <netinet/in.h>
46 #include <arpa/inet.h>
47 #include <netatm/port.h>
48 #include <netatm/atm.h>
49 #include <netatm/atm_if.h>
50 #include <netatm/atm_sap.h>
51 #include <netatm/atm_sys.h>
52 #include <netatm/atm_ioctl.h>
54 #include <netdb.h>
55 #include <stdio.h>
56 #include <string.h>
58 #include "libatm.h"
61 * Get IP address
63 * Return an IP address in a socket address structure, given a character
64 * string with a domain name or a dotted decimal number.
66 * Arguments:
67 * p pointer to a host name or IP address
69 * Returns:
70 * null error was encountered
71 * struct sockaddr_in * a pointer to a socket address with the
72 * requested IP address
75 struct sockaddr_in *
76 get_ip_addr(p)
77 char *p;
79 struct hostent *ip_host;
80 static struct sockaddr_in sin;
83 * Get IP address of specified host name
85 UM_ZERO(&sin, sizeof(sin));
86 sin.sin_family = AF_INET;
87 if (p[0] >= '0' && p[0] <= '9') {
89 * IP address is in dotted decimal format
91 if ((sin.sin_addr.s_addr = inet_addr(p)) == -1) {
92 return((struct sockaddr_in *)0);
94 } else {
96 * Host name is in domain name system format
98 ip_host = gethostbyname(p);
99 if (!ip_host ||
100 ip_host->h_addrtype != AF_INET) {
101 return((struct sockaddr_in *)0);
103 sin.sin_addr.s_addr = *(u_long *)ip_host->h_addr_list[0];
105 return(&sin);
110 * Format an IP address
112 * Return a text-formatted string with an IP address and domain name
113 * given a sockaddr_in with an IP address.
115 * Arguments:
116 * p pointer to sockaddr_in with an IP address
118 * Returns:
119 * char * pointer to a text-formatted string
122 char *
123 format_ip_addr(addr)
124 struct in_addr *addr;
126 static char host_name[MAXHOSTNAMELEN + 18];
127 char *ip_num;
128 struct hostent *ip_host;
131 * Initialize
133 UM_ZERO(host_name, sizeof(host_name));
136 * Check for a zero address
138 if (!addr || addr->s_addr == 0) {
139 return("-");
143 * Get address in dotted decimal format
145 ip_num = inet_ntoa(*addr);
148 * Look up name in DNS
150 ip_host = gethostbyaddr((char *)addr, sizeof(addr), AF_INET);
151 if (ip_host && ip_host->h_name &&
152 strlen(ip_host->h_name)) {
154 * Return host name followed by dotted decimal address
156 snprintf(host_name, sizeof(host_name), "%s (%s)",
157 ip_host->h_name, ip_num);
158 return (host_name);
159 } else {
161 * No host name -- just return dotted decimal address
163 return(ip_num);