From ce74646584a1743bb340defba6bea31a48868bbe Mon Sep 17 00:00:00 2001 From: Kirill Andreev Date: Mon, 1 Jun 2009 18:52:46 +0400 Subject: [PATCH] Fix --- src/devices/mesh/dot11s/airtime-metric.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/devices/mesh/dot11s/airtime-metric.h b/src/devices/mesh/dot11s/airtime-metric.h index 5faf63faf..2d5e0a71d 100644 --- a/src/devices/mesh/dot11s/airtime-metric.h +++ b/src/devices/mesh/dot11s/airtime-metric.h @@ -27,25 +27,13 @@ class AirtimeLinkMetricCalculator : public Object { public: static TypeId GetTypeId (); - // friend class MeshWifiInterfaceMac; uint32_t CalculateMetric(Mac48Address peerAddress, Ptr mac); private: uint32_t m_overheadNanosec; -#if 0 - (34 //DIFS - +9*2 //SIFS - +16*2 //Preamble - +24) //Ack - *1000; //nanoseconds -#endif uint32_t m_testLength; uint16_t m_headerLength; uint16_t m_meshHeaderLength; -#if 0 - static const uint32_t test_length = 1024; - static const uint32_t header_length = 36; -#endif }; } //namespace dot11s } //namespace ns3