diff options
author | Denys Vlasenko | 2011-11-16 20:17:12 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-11-16 20:17:12 +0100 |
commit | a092a89d8f052072e562861f2968573d89e10dd5 (patch) | |
tree | 43e7300d1825899e5c95ae9f557d0e2d1efde228 /networking/udhcp/common.h | |
parent | 39b233182c0a13200be051b993da181a1db80a87 (diff) | |
download | busybox-a092a89d8f052072e562861f2968573d89e10dd5.zip busybox-a092a89d8f052072e562861f2968573d89e10dd5.tar.gz |
udhcpc6: rudimentary code to export data to script; fix IAADDR parsing
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r-- | networking/udhcp/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h index a7f9395..479ae49 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h @@ -308,6 +308,9 @@ int arpping(uint32_t test_nip, uint8_t *from_mac, const char *interface) FAST_FUNC; +/* note: ip is a pointer to an IPv6 in network order, possibly misaliged */ +int sprint_nip6(char *dest, /*const char *pre,*/ const uint8_t *ip) FAST_FUNC; + POP_SAVED_FUNCTION_VISIBILITY #endif |