Minor updates to comments, debug messages, documentation

This commit is contained in:
Gregory Nutt 2015-02-03 17:01:48 -06:00
parent 154d3ce955
commit f7ace410d1
2 changed files with 12 additions and 4 deletions

View File

@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
<p>Last Updated: February 2, 2014</p>
<p>Last Updated: February 3, 2014</p>
</td>
</tr>
</table>
@ -755,6 +755,14 @@
</p>
</td>
</tr>
<tr>
<td><br></td>
<td>
<p>
<li> ICMPv6 autonomous auto-configuration</li>
</p>
</td>
</tr>
<tr>
<td><br></td>
<td>

View File

@ -120,7 +120,7 @@ void icmpv6_rsolicit(FAR struct net_driver_s *dev)
net_ipv6addr_copy(icmp->srcipaddr, dev->d_ipv6addr);
/* Set up the ICMPv6 Neighbor Solicitation message */
/* Set up the ICMPv6 Router Solicitation message */
sol = ICMPv6RSOLICIT;
sol->type = ICMPV6_ROUTER_SOLICIT; /* Message type */
@ -163,7 +163,7 @@ void icmpv6_rsolicit(FAR struct net_driver_s *dev)
* to the Ethernet MAC address 33:33:00:01:00:03.
*
* NOTES: This appears correct for the ICMPv6 Router Solicitation
* Message, but the ICMPv6 Neighbor Solicitation message seems to
* Message, but the ICMPv6 Router Solicitation message seems to
* use 33:33:ff:01:00:03.
*/
@ -206,7 +206,7 @@ void icmpv6_rsolicit(FAR struct net_driver_s *dev)
/* SLIP has no link layer header */
#endif
nllvdbg("Outgoing ICMPv6 Neighbor Solicitation length: %d (%d)\n",
nllvdbg("Outgoing ICMPv6 Router Solicitation length: %d (%d)\n",
dev->d_len, (icmp->len[0] << 8) | icmp->len[1]);
#ifdef CONFIG_NET_STATISTICS