src/internet-node/arp-l3-protocol.cc
changeset 2251 04963d8cca51
parent 2250 18f432098389
child 2252 80595448707a
equal deleted inserted replaced
2250:18f432098389 2251:04963d8cca51
    36 const uint16_t ArpL3Protocol::PROT_NUMBER = 0x0806;
    36 const uint16_t ArpL3Protocol::PROT_NUMBER = 0x0806;
    37 
    37 
    38 NS_OBJECT_ENSURE_REGISTERED (ArpL3Protocol);
    38 NS_OBJECT_ENSURE_REGISTERED (ArpL3Protocol);
    39 
    39 
    40 TypeId 
    40 TypeId 
    41 ArpL3Protocol::iid (void)
    41 ArpL3Protocol::GetTypeId (void)
    42 {
    42 {
    43   static TypeId iid = TypeId ("ArpL3Protocol")
    43   static TypeId iid = TypeId ("ArpL3Protocol")
    44     .SetParent<Object> ();
    44     .SetParent<Object> ();
    45   return iid;
    45   return iid;
    46 }
    46 }