summaryrefslogtreecommitdiff
path: root/src/ip6.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ip6.c')
-rw-r--r--src/ip6.c29
1 files changed, 14 insertions, 15 deletions
diff --git a/src/ip6.c b/src/ip6.c
index b7b4540..e5a7214 100644
--- a/src/ip6.c
+++ b/src/ip6.c
@@ -5,10 +5,10 @@
#include "str.h"
/**
- @file ip6.c
- @author djb, fefe, feh
- @source ucspi-tcp, ucspi-tcp6
- @brief handling of IPv6 addresses
+ @file ip6.c
+ @author djb, fefe, feh
+ @source ucspi-tcp, ucspi-tcp6
+ @brief handling of IPv6 addresses
*/
/***
@@ -94,15 +94,14 @@ unsigned int ip6_fmt_flat(char *s, char ip[16])
return 32;
}
-/***
- @brief ia6_fmt
- convert IPv6 address to inverse DNS nibble format
- 1.2.3.4.5.6.7.8.9.a.b.c.d.e.f.1.2.3.4.5.6.7.8.9.a.b.c.d.e.f.ip6.arpa
- @param input: IPv6 char array
- output: pointer to IPv6 address string
- @return int length of address
- */
-
+/**
+ @brief ia6_fmt
+ convert IPv6 address to inverse DNS nibble format
+ 1.2.3.4.5.6.7.8.9.a.b.c.d.e.f.1.2.3.4.5.6.7.8.9.a.b.c.d.e.f.ip6.arpa
+ @param input: IPv6 char array
+ output: pointer to IPv6 address string
+ @return int length of address
+*/
unsigned int ia6_fmt(char *s, char ip[16])
{
unsigned int i;
@@ -273,7 +272,7 @@ unsigned int ip6_scanbracket(const char *s, char ip[16])
/**
@brief ip6_ifscan
- parse compactified IPv6 address string
+ parse compactified IPv6 address string
concatinated with the interface name: fe80::1%eth0
@param input: pointer to IPv6 address string
output: IPv6 char array, stralloc interface_name
@@ -308,7 +307,7 @@ unsigned int ip6_ifscan(char *s, char ip[16], stralloc *ifname)
parse compactified IPv6 address string
concatinated with the prefix length: fe80::1/64
@param input: pointer to IPv6 address string
- output: IPv6 char array, long plen
+ output: IPv6 char array, long plen
@return int length of ip6_address/ip
*/