source: MondoRescue/trunk/mindi-busybox/include/inet_common.h@ 904

Last change on this file since 904 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 1003 bytes
Line 
1/*
2 * stolen from net-tools-1.59 and stripped down for busybox by
3 * Erik Andersen <andersen@codepoet.org>
4 *
5 * Heavily modified by Manuel Novoa III Mar 12, 2001
6 *
7 * Version: $Id: inet_common.h,v 1.4 2004/03/10 07:42:37 mjn3 Exp $
8 *
9 */
10
11#include <features.h>
12#include <sys/types.h>
13#include <sys/socket.h>
14#include "platform.h"
15
16
17extern const char bb_INET_default[]; /* = "default" */
18
19/* hostfirst!=0 If we expect this to be a hostname,
20 try hostname database first
21 */
22extern int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst);
23
24
25/* numeric: & 0x8000: default instead of *,
26 * & 0x4000: host instead of net,
27 * & 0x0fff: don't resolve
28 */
29extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in,
30 int numeric, unsigned int netmask);
31
32extern int INET6_resolve(const char *name, struct sockaddr_in6 *sin6);
33extern int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6, int numeric);
Note: See TracBrowser for help on using the repository browser.