Checkpoint after pass.

This commit is contained in:
Robin Sommer 2012-02-15 13:07:08 -08:00
parent c0f05f57a7
commit 7458ebf385
35 changed files with 594 additions and 524 deletions

View file

@ -1103,9 +1103,9 @@ void EventPlayer::Process()
void Packet::Describe(ODesc* d) const
{
const IP_Hdr ip = IP();
d->Add(string(ip.SrcAddr()).c_str());
d->Add(ip.SrcAddr());
d->Add("->");
d->Add(string(ip.DstAddr()).c_str());
d->Add(ip.DstAddr());
}
bool Packet::Serialize(SerialInfo* info) const