src/wifi/model/regular-wifi-mac.cc
changeset 10204 7a102bb70a36
parent 10203 362fbb8ac702
child 10410 4d4eb8097fa3
--- a/src/wifi/model/regular-wifi-mac.cc	Sun Sep 22 20:00:33 2013 -0700
+++ b/src/wifi/model/regular-wifi-mac.cc	Sun Sep 22 20:59:18 2013 -0700
@@ -701,12 +701,6 @@
 
   switch (standard)
     {
-    case WIFI_PHY_STANDARD_80211p_CCH:
-    case WIFI_PHY_STANDARD_80211p_SCH:
-      cwmin = 15;
-      cwmax = 511;
-      break;
-
     case WIFI_PHY_STANDARD_holland:
     case WIFI_PHY_STANDARD_80211a:
     case WIFI_PHY_STANDARD_80211g:
@@ -734,15 +728,7 @@
   // Now we configure the EDCA functions
   for (EdcaQueues::iterator i = m_edca.begin (); i != m_edca.end (); ++i)
     {
-      // Special configuration for 802.11p CCH
-      if (standard == WIFI_PHY_STANDARD_80211p_CCH)
-        {
-          ConfigureCCHDcf (i->second, cwmin, cwmax, i->first);
-        }
-      else
-        {
-          ConfigureDcf (i->second, cwmin, cwmax, i->first);
-        }
+      ConfigureDcf (i->second, cwmin, cwmax, i->first);
     }
 }