Skip to content

Commit

Permalink
for cisagov#457, fix processing of other log types
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Jan 21, 2025
1 parent 148f000 commit a88ce44
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions shared/bin/pcap_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,16 @@
tags_from_filename,
)
from malcolm_utils import eprint, str2bool, AtomicInt, run_process, same_file_or_dir
from suricata_socket import SuricataSocketClient

from multiprocessing.pool import ThreadPool
from subprocess import PIPE, STDOUT, DEVNULL, Popen, TimeoutExpired
from collections import deque, defaultdict
from itertools import chain, repeat

try:
from suricata_socket import SuricataSocketClient
except ImportError:
SuricataSocketClient = None

###################################################################################################
MAX_WORKER_PROCESSES_DEFAULT = 1

Expand Down

0 comments on commit a88ce44

Please sign in to comment.