Browse Source

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

Stefan Schmidt 5 years ago
parent
commit
0e9e656560
1 changed files with 2 additions and 2 deletions
  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: