summaryrefslogtreecommitdiff
path: root/i/pc104/initrd/conf/busybox/include/inet_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'i/pc104/initrd/conf/busybox/include/inet_common.h')
-rw-r--r--i/pc104/initrd/conf/busybox/include/inet_common.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/i/pc104/initrd/conf/busybox/include/inet_common.h b/i/pc104/initrd/conf/busybox/include/inet_common.h
new file mode 100644
index 0000000..bda6211
--- /dev/null
+++ b/i/pc104/initrd/conf/busybox/include/inet_common.h
@@ -0,0 +1,25 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * stolen from net-tools-1.59 and stripped down for busybox by
+ * Erik Andersen <andersen@codepoet.org>
+ *
+ * Heavily modified by Manuel Novoa III Mar 12, 2001
+ *
+ */
+
+#include "platform.h"
+
+/* hostfirst!=0 If we expect this to be a hostname,
+ try hostname database first
+ */
+extern int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst);
+
+/* numeric: & 0x8000: "default" instead of "*",
+ * & 0x4000: host instead of net,
+ * & 0x0fff: don't resolve
+ */
+extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in,
+ int numeric, unsigned int netmask);
+
+extern int INET6_resolve(const char *name, struct sockaddr_in6 *sin6);
+extern int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6, int numeric);