diff --git a/src/internet/model/icmpv6-header.cc b/src/internet/model/icmpv6-header.cc index f31bde4e3..babc1398b 100644 --- a/src/internet/model/icmpv6-header.cc +++ b/src/internet/model/icmpv6-header.cc @@ -991,7 +991,8 @@ void Icmpv6Echo::Print (std::ostream& os) const { NS_LOG_FUNCTION (this << &os); os << "( type = " << (GetType () == 128 ? "128 (Request)" : "129 (Reply)") << - " code = " << (uint32_t)GetCode () << + " Id = " << (uint32_t)GetId () << + " SeqNo = " << (uint32_t)GetSeq () << " checksum = " << (uint32_t)GetChecksum () << ")"; }