Fixed formatting of documentation
This commit is contained in:
parent
cad1c37fb3
commit
5b818d5a39
1 changed files with 8 additions and 6 deletions
|
@ -55,18 +55,20 @@ uip_debug_ipaddr_print(const uip_ipaddr_t *addr)
|
||||||
}
|
}
|
||||||
#if NETSTACK_CONF_WITH_IPV6
|
#if NETSTACK_CONF_WITH_IPV6
|
||||||
if(ip64_addr_is_ipv4_mapped_addr(addr)) {
|
if(ip64_addr_is_ipv4_mapped_addr(addr)) {
|
||||||
/* Printing IPv4-mapped addresses is done according to RFC 3513 [1]
|
/*
|
||||||
*
|
* Printing IPv4-mapped addresses is done according to RFC 3513 [1]
|
||||||
* An alternative form that is sometimes more
|
*
|
||||||
* convenient when dealing with a mixed environment
|
* "An alternative form that is sometimes more
|
||||||
|
* convenient when dealing with a mixed environment
|
||||||
* of IPv4 and IPv6 nodes is x:x:x:x:x:x:d.d.d.d,
|
* of IPv4 and IPv6 nodes is x:x:x:x:x:x:d.d.d.d,
|
||||||
* where the 'x's are the hexadecimal values of the
|
* where the 'x's are the hexadecimal values of the
|
||||||
* six high-order 16-bit pieces of the address, and
|
* six high-order 16-bit pieces of the address, and
|
||||||
* the 'd's are the decimal values of the four
|
* the 'd's are the decimal values of the four
|
||||||
* low-order 8-bit pieces of the address (standard
|
* low-order 8-bit pieces of the address (standard
|
||||||
* IPv4 representation).
|
* IPv4 representation)."
|
||||||
*
|
*
|
||||||
* [1] https://tools.ietf.org/html/rfc3513#page-5 */
|
* [1] https://tools.ietf.org/html/rfc3513#page-5
|
||||||
|
*/
|
||||||
PRINTA("::FFFF:%u.%u.%u.%u", addr->u8[12], addr->u8[13], addr->u8[14], addr->u8[15]);
|
PRINTA("::FFFF:%u.%u.%u.%u", addr->u8[12], addr->u8[13], addr->u8[14], addr->u8[15]);
|
||||||
} else {
|
} else {
|
||||||
for(i = 0, f = 0; i < sizeof(uip_ipaddr_t); i += 2) {
|
for(i = 0, f = 0; i < sizeof(uip_ipaddr_t); i += 2) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue