Skip to content

Commit

Permalink
Update main2.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
sbromt authored Dec 18, 2024
1 parent dbe0ff0 commit 5a16df5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mitmproxy-windows/redirector/src/main2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ async fn main() -> Result<()> {
debug!("Skipping PID 4");

clear_connections(
connection_id,
packet.connection_id(),

Check failure on line 237 in mitmproxy-windows/redirector/src/main2.rs

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.80, --exclude macos-certificate-truster)

cannot find value `packet` in this scope
&mut connections,
&inject_handle,
&mut ipc_tx,
Expand All @@ -248,7 +248,7 @@ async fn main() -> Result<()> {
warn!("Unknown transport protocol: {}", address.protocol());

clear_connections(
connection_id,
packet.connection_id(),

Check failure on line 251 in mitmproxy-windows/redirector/src/main2.rs

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.80, --exclude macos-certificate-truster)

cannot find value `packet` in this scope
&mut connections,
&inject_handle,
&mut ipc_tx,
Expand All @@ -266,7 +266,7 @@ async fn main() -> Result<()> {
if connection_id.src.ip().is_multicast() || connection_id.dst.ip().is_multicast() {

clear_connections(
connection_id,
packet.connection_id(),

Check failure on line 269 in mitmproxy-windows/redirector/src/main2.rs

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.80, --exclude macos-certificate-truster)

cannot find value `packet` in this scope
&mut connections,
&inject_handle,
&mut ipc_tx,
Expand Down

0 comments on commit 5a16df5

Please sign in to comment.