Bug 1752 - RadvdInterface m_defaultLifeTime is set to milliseconds instead of seconds

This commit is contained in:
Tommaso Pecorella
2013-08-12 07:35:18 +02:00
parent 17e7d24deb
commit 020b61615e
2 changed files with 2 additions and 1 deletions

View File

@@ -69,6 +69,7 @@ Bugs fixed
- Bug 1727 - Ping6 should use a proper source address
- Bug 1731 - lte-phy-error-model passes unexpectedly
- Bug 1742 - IPv6 HbH and Dst Extension Header size is not correctly calculated
- Bug 1752 - RadvdInterface m_defaultLifeTime is set to milliseconds instead of seconds
Known issues
------------

View File

@@ -41,7 +41,7 @@ RadvdInterface::RadvdInterface (uint32_t interface)
m_reachableTime = 0; /* means unspecified for the router */
m_retransTimer = 0; /* means unspecified for the router */
m_curHopLimit = 64;
m_defaultLifeTime = 3 * m_maxRtrAdvInterval;
m_defaultLifeTime = (3 * m_maxRtrAdvInterval) / 1000;
m_defaultPreference = 1;
m_sourceLLAddress = true;
m_homeAgentFlag = false;