Skip to content

Commit

Permalink
Disable pi (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pronebird committed Sep 20, 2024
1 parent 231cade commit dbe14a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion talpid-tunnel/src/tun_provider/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl TunnelDevice {

#[cfg(target_os = "linux")]
config.platform(|config| {
config.packet_information(true);
config.packet_information(false);
});
let mut dev = platform::create(&config).map_err(NetworkInterfaceError::CreateDevice)?;
apply_async_flags(dev.as_raw_fd()).map_err(NetworkInterfaceError::SetDeviceAsync)?;
Expand Down

0 comments on commit dbe14a1

Please sign in to comment.