linwhitehat/ET-BERT

vocab_process/main.py 中缺少变量的全局定义

Opened this issue · 0 comments

变量tls13_pcap_dir缺少定义

def pcap_preprocess():
    ...
    while start_date <= end_date:
        data_dir = tls13_pcap_dir + str(start_date) + "\\"
    ...

变量tls13_name缺少定义

def preprocess(pcap_dir):
    ...
    for parent,dirs,files in os.walk(pcap_dir):
        for file in files:
            if "pcapng" not in file and tls13_name in file:
    ...