See if the time filter is not applied properly.
This commit is contained in:
parent
f8ecb71dd8
commit
299d6e27fa
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ def analyze_pcap(pcapng_path, start_ts, end_ts, ap_bssid, ap_channel):
|
||||||
|
|
||||||
cap = pyshark.FileCapture(
|
cap = pyshark.FileCapture(
|
||||||
pcapng_path,
|
pcapng_path,
|
||||||
display_filter=f'time >= {start_ts} && time <= {end_ts}',
|
display_filter=f'frame.time_epoch >= {start_ts} && frame.time_epoch <= {end_ts}',
|
||||||
use_json=True,
|
use_json=True,
|
||||||
include_raw=False
|
include_raw=False
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue