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

(-)a/RELEASE_NOTES (+1 lines)
 Lines 34-39    Link Here 
34
- Bug 2076 - TCP MinRTO Attribute is not actually used
34
- Bug 2076 - TCP MinRTO Attribute is not actually used
35
- Bug 2077 - Icmpv6L4Protocol::HandleDestinationUnreachable must check the packet size, not its serialized size
35
- Bug 2077 - Icmpv6L4Protocol::HandleDestinationUnreachable must check the packet size, not its serialized size
36
- Bug 2079 - mcs variable in ht-wifi-network example is confusing
36
- Bug 2079 - mcs variable in ht-wifi-network example is confusing
37
- Bug 2083 - BridgeNetDevice may send corrupted packets
37
38
38
Known issues
39
Known issues
39
------------
40
------------
(-)a/examples/wireless/wifi-wired-bridging.cc (-2 / +2 lines)
 Lines 24-30    Link Here 
24
//      +-----+      +-----+            +-----+      +-----+
24
//      +-----+      +-----+            +-----+      +-----+
25
//      | STA |      | STA |            | STA |      | STA | 
25
//      | STA |      | STA |            | STA |      | STA | 
26
//      +-----+      +-----+            +-----+      +-----+
26
//      +-----+      +-----+            +-----+      +-----+
27
//    192.168.0.3  192.168.0.4        192.168.0.5  192.168.0.6
27
//    192.168.0.2  192.168.0.3        192.168.0.5  192.168.0.6
28
//      --------     --------           --------     --------
28
//      --------     --------           --------     --------
29
//      WIFI STA     WIFI STA           WIFI STA     WIFI STA
29
//      WIFI STA     WIFI STA           WIFI STA     WIFI STA
30
//      --------     --------           --------     --------
30
//      --------     --------           --------     --------
 Lines 37-43    Link Here 
37
//             ##############           ##############
37
//             ##############           ##############
38
//                 BRIDGE                   BRIDGE
38
//                 BRIDGE                   BRIDGE
39
//             ##############           ############## 
39
//             ##############           ############## 
40
//               192.168.0.1              192.168.0.2
40
//               192.168.0.1              192.168.0.4
41
//               +---------+              +---------+
41
//               +---------+              +---------+
42
//               | AP Node |              | AP Node |
42
//               | AP Node |              | AP Node |
43
//               +---------+              +---------+
43
//               +---------+              +---------+
(-)a/src/bridge/model/bridge-net-device.cc (-1 / +3 lines)
 Lines 398-408    Link Here 
398
398
399
  // data was not unicast or no state has been learned for that mac
399
  // data was not unicast or no state has been learned for that mac
400
  // address => flood through all ports.
400
  // address => flood through all ports.
401
  Ptr<Packet> pktCopy;
401
  for (std::vector< Ptr<NetDevice> >::iterator iter = m_ports.begin ();
402
  for (std::vector< Ptr<NetDevice> >::iterator iter = m_ports.begin ();
402
       iter != m_ports.end (); iter++)
403
       iter != m_ports.end (); iter++)
403
    {
404
    {
405
      pktCopy = packet->Copy ();
404
      Ptr<NetDevice> port = *iter;
406
      Ptr<NetDevice> port = *iter;
405
      port->SendFrom (packet, src, dest, protocolNumber);
407
      port->SendFrom (pktCopy, src, dest, protocolNumber);
406
    }
408
    }
407
409
408
  return true;
410
  return true;

Return to bug 2083