From e5241d93e57db30fb0c0ec46ec857025818e54b2 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sat, 13 Oct 2007 15:10:23 -0700 Subject: [PATCH] back out unrelated changes --- examples/wscript | 4 ---- src/common/packet.h | 10 ---------- src/core/object.cc | 1 - 3 files changed, 15 deletions(-) diff --git a/examples/wscript b/examples/wscript index 819336fd2..f597225fb 100644 --- a/examples/wscript +++ b/examples/wscript @@ -18,10 +18,6 @@ def build(bld): ['csma', 'internet-node']) obj.source = 'csma-one-subnet.cc' - obj = bld.create_ns3_program('george', - ['csma', 'internet-node']) - obj.source = 'george.cc' - obj = bld.create_ns3_program('udp-echo', ['csma', 'internet-node']) obj.source = 'udp-echo.cc' diff --git a/src/common/packet.h b/src/common/packet.h index 251d21ad1..f1e14cf02 100644 --- a/src/common/packet.h +++ b/src/common/packet.h @@ -243,16 +243,6 @@ public: /** * A packet is allocated a new uid when it is created * empty or with zero-filled payload. - * - * Note: This uid is an internal uid and cannot be counted on to - * provide an accurate counter of how many "simulated packets" of a - * particular protocol are in the system. It is not trivial to make - * this uid into such a counter, because of questions such as what - * should the uid be when the packet is sent over broadcast media, or - * when fragmentation occurs. If a user wants to trace actual packet - * counts, he or she should look at e.g. the IP ID field or transport - * sequence numbers, or other packet or frame counters at other - * protocol layers. * * \returns an integer identifier which uniquely * identifies this packet. diff --git a/src/core/object.cc b/src/core/object.cc index c027a46eb..1049b6cab 100644 --- a/src/core/object.cc +++ b/src/core/object.cc @@ -197,7 +197,6 @@ Object::DoQueryInterface (InterfaceId iid) const do { NS_ASSERT (currentObject != 0); InterfaceId cur = currentObject->m_iid; - NS_LOG_LOGIC("In Loop: " << cur.GetName()); while (cur != iid && cur != Object::iid) { cur = InterfaceId::LookupParent (cur);