diff options
author | Manuel Novoa III | 2004-03-10 07:42:38 +0000 |
---|---|---|
committer | Manuel Novoa III | 2004-03-10 07:42:38 +0000 |
commit | 7d0c51919ce4d0be00fd8ae92d6f16b86aad9fd2 (patch) | |
tree | d19379419a02c8f77fc864db6b08450f016264dc /include/inet_common.h | |
parent | 2715fa147a36662b59b58b78ff31e225e785fef9 (diff) | |
download | busybox-7d0c51919ce4d0be00fd8ae92d6f16b86aad9fd2.zip busybox-7d0c51919ce4d0be00fd8ae92d6f16b86aad9fd2.tar.gz |
In spite of the feature freeze, check in a complete rework of route which
fixes some bugs, adds some error checking, and removes _lots_ of bloat.
Text size on i386...
old new
ipv6 5425 3523
no ipv6 3143 2193
Diffstat (limited to 'include/inet_common.h')
-rw-r--r-- | include/inet_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/inet_common.h b/include/inet_common.h index 0375c1c..afea5de 100644 --- a/include/inet_common.h +++ b/include/inet_common.h @@ -4,7 +4,7 @@ * * Heavily modified by Manuel Novoa III Mar 12, 2001 * - * Version: $Id: inet_common.h,v 1.3 2003/07/14 21:20:52 andersen Exp $ + * Version: $Id: inet_common.h,v 1.4 2004/03/10 07:42:37 mjn3 Exp $ * */ @@ -29,5 +29,5 @@ extern int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirs extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in, int numeric, unsigned int netmask); -extern int INET6_resolve(char *name, struct sockaddr_in6 *sin6); +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); |