/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.
*
* 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: Emmanuelle Laprise <emmanuelle.laprise@bluekazoo.ca>
*/
#include "ns3/assert.h"
#include "ns3/debug.h"
#include "ns3/trailer.h"
#include "ethernet-trailer.h"
NS_DEBUG_COMPONENT_DEFINE ("EthernetTrailer");
namespace ns3 {
bool EthernetTrailer::m_calcFcs = false;
const char *
EthernetTrailer::GetUid (void)
{
return "EthernetTrailer.ns3";
}
EthernetTrailer::EthernetTrailer ()
{
Init();
}
EthernetTrailer::~EthernetTrailer ()
{}
void EthernetTrailer::Init()
{
m_fcs = 0;
}
void
EthernetTrailer::EnableFcs (bool enable)
{
m_calcFcs = enable;
}
bool
EthernetTrailer::CheckFcs (const Packet& p) const
{
if (!m_calcFcs)
{
return true;
} else {
NS_DEBUG("FCS calculation is not yet enabled" << std::endl);
return false;
}
}
void
EthernetTrailer::CalcFcs (const Packet& p)
{
NS_DEBUG("FCS calculation is not yet enabled" << std::endl);
}
void
EthernetTrailer::SetFcs (uint32_t fcs)
{
m_fcs = fcs;
}
uint32_t
EthernetTrailer::GetFcs (void)
{
return m_fcs;
}
uint32_t
EthernetTrailer::GetTrailerSize (void) const
{
return GetSerializedSize();
}
std::string
EthernetTrailer::DoGetName (void) const
{
return "ETHERNET";
}
void
EthernetTrailer::PrintTo (std::ostream &os) const
{
os << " fcs=" << m_fcs;
}
uint32_t
EthernetTrailer::GetSerializedSize (void) const
{
return 4;
}
void
EthernetTrailer::SerializeTo (Buffer::Iterator end) const
{
Buffer::Iterator i = end;
i.Prev(GetSerializedSize());
i.WriteU32 (m_fcs);
}
uint32_t
EthernetTrailer::DeserializeFrom (Buffer::Iterator end)
{
Buffer::Iterator i = end;
uint32_t size = GetSerializedSize();
i.Prev(size);
m_fcs = i.ReadU32 ();
return size;
}
}; // namespace ns3