Преглед изворни кода

Fixed path to the CAIDA TTL distribution data in MembersMgmtCommAttack.py

Stefan Schmidt пре 5 година
родитељ
комит
0e9e656560
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      code/Attack/MembersMgmtCommAttack.py

+ 2 - 2
code/Attack/MembersMgmtCommAttack.py

@@ -385,7 +385,7 @@ class MembersMgmtCommAttack(BaseAttack.BaseAttack):
                 :return: returns a dict with the IPs as keys and dicts for their TTL distribution as values
                 """
                 ip_based_distrib = {}
-                with open("resources/CaidaTTL_perIP.csv", "r") as file:
+                with open(Util.RESOURCE_DIR + "CaidaTTL_perIP.csv", "r") as file:
                     # every line consists of: IP, TTL, Frequency
                     next(file)  # skip CSV header line
                     for line in file:
@@ -404,7 +404,7 @@ class MembersMgmtCommAttack(BaseAttack.BaseAttack):
                 """
 
                 total_ttl_distrib = {}
-                with open("resources/CaidaTTL_total.csv", "r") as file:
+                with open(Util.RESOURCE_DIR + "CaidaTTL_total.csv", "r") as file:
                     # every line consists of: TTL, Frequency, Fraction
                     next(file)  # skip CSV header line
                     for line in file: