View | Details | Raw Unified | Return to bug 2148
Collapse All | Expand All

(-)a/RELEASE_NOTES (+1 lines)
 Lines 35-40    Link Here 
35
- Bug 2135 - TCP doesn't honor the socket's output interface
35
- Bug 2135 - TCP doesn't honor the socket's output interface
36
- Bug 2136 - The usage of tid in wifi and wave module shall be "if (tid > 7)" rather than "if (tid >= 7)"
36
- Bug 2136 - The usage of tid in wifi and wave module shall be "if (tid > 7)" rather than "if (tid >= 7)"
37
- Bug 2138 - SimpleNetDevice could send overlapped packets.
37
- Bug 2138 - SimpleNetDevice could send overlapped packets.
38
- Bug 2148 - Ipv6Interface::SetUp doesn't re-create the Link-Local addresses
38
39
39
Known issues
40
Known issues
40
------------
41
------------
(-)a/src/internet/model/ipv6-interface.cc (-1 / +2 lines)
 Lines 121-127    Link Here 
121
    {
121
    {
122
      icmpv6 = proto->GetObject <Icmpv6L4Protocol> ();
122
      icmpv6 = proto->GetObject <Icmpv6L4Protocol> ();
123
    }
123
    }
124
  if (icmpv6)
124
  if (icmpv6 && !m_ndCache)
125
    {
125
    {
126
      m_ndCache = icmpv6->CreateCache (m_device, this);
126
      m_ndCache = icmpv6->CreateCache (m_device, this);
127
    }
127
    }
 Lines 179-184    Link Here 
179
    {
179
    {
180
      return;
180
      return;
181
    }
181
    }
182
  DoSetup ();
182
  m_ifup = true;
183
  m_ifup = true;
183
}
184
}
184
185

Return to bug 2148