소스 검색

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: