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

(-)a/src/internet/model/arp-cache.cc (+6 lines)
 Lines 462-467    Link Here 
462
  NS_LOG_FUNCTION (this);
462
  NS_LOG_FUNCTION (this);
463
  m_macAddress = macAddress;
463
  m_macAddress = macAddress;
464
}
464
}
465
void 
466
ArpCache::Entry::SetMacAddress (Address macAddress)
467
{
468
  NS_LOG_FUNCTION (this);
469
  m_macAddress = macAddress;
470
}
465
Ipv4Address 
471
Ipv4Address 
466
ArpCache::Entry::GetIpv4Address (void) const
472
ArpCache::Entry::GetIpv4Address (void) const
467
{
473
{
(-)a/src/internet/model/arp-cache.h (+6 lines)
 Lines 242-250    Link Here 
242
    Ipv4Address GetIpv4Address (void) const;
242
    Ipv4Address GetIpv4Address (void) const;
243
    /**
243
    /**
244
     * \param macAddress The MacAddress for this entry
244
     * \param macAddress The MacAddress for this entry
245
     * \deprecated This (misspelled) method will go away in future versions of ns-3, in favor of the correctly spelled version.
245
     */
246
     */
247
    NS_DEPRECATED
246
    void SetMacAddresss (Address macAddress);
248
    void SetMacAddresss (Address macAddress);
247
    /**
249
    /**
250
     * \param macAddress The MacAddress for this entry
251
     */
252
    void SetMacAddress (Address macAddress);
253
    /**
248
     * \param destination The Ipv4Address for this entry
254
     * \param destination The Ipv4Address for this entry
249
     */
255
     */
250
    void SetIpv4Address (Ipv4Address destination);
256
    void SetIpv4Address (Ipv4Address destination);

Return to bug 2671