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

(-)a/src/bridge/model/bridge-net-device.cc (+2 lines)
 Lines 105-110    Link Here 
105
    case PACKET_HOST:
105
    case PACKET_HOST:
106
      if (dst48 == m_address)
106
      if (dst48 == m_address)
107
        {
107
        {
108
          Learn (src48, incomingPort);
108
          m_rxCallback (this, packet, protocol, src);
109
          m_rxCallback (this, packet, protocol, src);
109
        }
110
        }
110
      break;
111
      break;
 Lines 118-123    Link Here 
118
    case PACKET_OTHERHOST:
119
    case PACKET_OTHERHOST:
119
      if (dst48 == m_address)
120
      if (dst48 == m_address)
120
        {
121
        {
122
          Learn (src48, incomingPort);
121
          m_rxCallback (this, packet, protocol, src);
123
          m_rxCallback (this, packet, protocol, src);
122
        }
124
        }
123
      else
125
      else

Return to bug 2772