Skip to content

Commit

Permalink
v4
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Sep 2, 2024
1 parent 03df47c commit 7feca16
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,10 @@ mod test {
fn loopback_interface_mtu_v4() {
#[cfg(target_os = "macos")]
check_mtu("localhost:443", true, 16384);
#[cfg(not(target_os = "macos"))]
check_mtu("localhost:443", true, 65536);
#[cfg(target_os = "linux")]
check_mtu("localhost:443", false, 65536);
#[cfg(target_os = "windows")]
check_mtu("localhost:443", false, 4294967295);
}

#[test]
Expand Down

0 comments on commit 7feca16

Please sign in to comment.