Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SkuldNorniern committed Feb 16, 2023
2 parents fe2e5e3 + 9540a16 commit c96abc9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file removed scripts/fluere-0.3.1-installer.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion src/net/online_fluereflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pub async fn packet_capture(
packet_count = 0;
for (key, flow) in active_flow.iter() {
if flow.get_last() < (time - (flow_timeout * 1000)) {
if verbose >= 1 {
if verbose >= 2 {
println!("flow expired");
}
records.push(*flow);
Expand Down
2 changes: 1 addition & 1 deletion src/net/packet_pcap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub async fn pcap_capture(
let mut cap = Capture::from_device(interface)
.unwrap()
.promisc(true)
.buffer_size(1000000000)
//.buffer_size(1000000000)
.open()
.unwrap();

Expand Down

0 comments on commit c96abc9

Please sign in to comment.