Searched refs:protocolAddress (Results 1 - 2 of 2) sorted by relevance

/haiku/src/add-ons/kernel/network/datalink_protocols/arp/
H A Darp.cpp83 static arp_entry *Lookup(in_addr_t protocolAddress);
84 static arp_entry *Add(in_addr_t protocolAddress,
259 arp_entry::Add(in_addr_t protocolAddress, sockaddr_dl *hardwareAddress, argument
268 entry->protocol_address = protocolAddress;
366 /*! Updates the entry determined by \a protocolAddress with the specified
376 arp_update_entry(in_addr_t protocolAddress, sockaddr_dl *hardwareAddress, argument
381 inet_to_string(protocolAddress), mac_to_string(LLADDR(hardwareAddress)),
384 arp_entry *entry = arp_entry::Lookup(protocolAddress);
391 if (protocolAddress != INADDR_ANY
397 "%02x:%02x:%02x:%02x:%02x:%02x.\n", protocolAddress,
[all...]
/haiku/src/add-ons/kernel/network/datalink_protocols/ipv6_datagram/
H A Dipv6_datagram.cpp113 static ndp_entry* Lookup(const in6_addr& protocolAddress);
114 static ndp_entry* Add(const in6_addr& protocolAddress,
289 ndp_entry::Add(const in6_addr& protocolAddress, sockaddr_dl* hardwareAddress, argument
298 entry->protocol_address = protocolAddress;
436 /*! Updates the entry determined by \a protocolAddress with the specified
446 ndp_update_entry(const in6_addr& protocolAddress, sockaddr_dl* hardwareAddress, argument
451 ndp_entry* entry = ndp_entry::Lookup(protocolAddress);
458 if (!IN6_IS_ADDR_UNSPECIFIED(&protocolAddress)
474 entry = ndp_entry::Add(protocolAddress, hardwareAddress, flags);

Completed in 52 milliseconds