/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2005 INRIA * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Mathieu Lacage */ #include "ns3/assert.h" #include "ns3/address-utils.h" #include "arp-header.h" namespace ns3 { NS_OBJECT_ENSURE_REGISTERED (ArpHeader); void ArpHeader::SetRequest (Address sourceHardwareAddress, Ipv4Address sourceProtocolAddress, Address destinationHardwareAddress, Ipv4Address destinationProtocolAddress) { m_type = ARP_TYPE_REQUEST; m_macSource = sourceHardwareAddress; m_macDest = destinationHardwareAddress; m_ipv4Source = sourceProtocolAddress; m_ipv4Dest = destinationProtocolAddress; } void ArpHeader::SetReply (Address sourceHardwareAddress, Ipv4Address sourceProtocolAddress, Address destinationHardwareAddress, Ipv4Address destinationProtocolAddress) { m_type = ARP_TYPE_REPLY; m_macSource = sourceHardwareAddress; m_macDest = destinationHardwareAddress; m_ipv4Source = sourceProtocolAddress; m_ipv4Dest = destinationProtocolAddress; } bool ArpHeader::IsRequest (void) const { return (m_type == ARP_TYPE_REQUEST)?true:false; } bool ArpHeader::IsReply (void) const { return (m_type == ARP_TYPE_REPLY)?true:false; } Address ArpHeader::GetSourceHardwareAddress (void) { return m_macSource; } Address ArpHeader::GetDestinationHardwareAddress (void) { return m_macDest; } Ipv4Address ArpHeader::GetSourceIpv4Address (void) { return m_ipv4Source; } Ipv4Address ArpHeader::GetDestinationIpv4Address (void) { return m_ipv4Dest; } TypeId ArpHeader::GetTypeId (void) { static TypeId tid = TypeId ("ns3::ArpHeader") .SetParent
() .AddConstructor () ; return tid; } TypeId ArpHeader::GetInstanceTypeId (void) const { return GetTypeId (); } void ArpHeader::Print (std::ostream &os) const { if (IsRequest ()) { os << "request " << "source mac: " << m_macSource << " " << "source ipv4: " << m_ipv4Source << " " << "dest ipv4: " << m_ipv4Dest ; } else { NS_ASSERT (IsReply ()); os << "reply " << "source mac: " << m_macSource << " " << "source ipv4: " << m_ipv4Source << " " << "dest mac: " << m_macDest << " " << "dest ipv4: " <