From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- vendor/rustix/tests/net/main.rs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 vendor/rustix/tests/net/main.rs (limited to 'vendor/rustix/tests/net/main.rs') diff --git a/vendor/rustix/tests/net/main.rs b/vendor/rustix/tests/net/main.rs new file mode 100644 index 000000000..0745282aa --- /dev/null +++ b/vendor/rustix/tests/net/main.rs @@ -0,0 +1,32 @@ +//! Tests for [`rustix::net`]. + +#![cfg(feature = "net")] +#![cfg_attr(target_os = "wasi", feature(wasi_ext))] +#![cfg(not(any(target_os = "redox", target_os = "wasi")))] +#![cfg_attr(io_lifetimes_use_std, feature(io_safety))] +#![cfg_attr(core_c_str, feature(core_c_str))] + +mod addr; +mod connect_bind_send; +mod poll; +mod sockopt; +#[cfg(unix)] +mod unix; +mod v4; +mod v6; + +/// Windows requires us to call a setup function before using any of the +/// socket APIs. +#[cfg(windows)] +#[ctor::ctor] +fn windows_startup() { + let _ = rustix::net::wsa_startup().unwrap(); +} + +/// Windows requires us to call a cleanup function after using any of the +/// socket APIs. +#[cfg(windows)] +#[ctor::dtor] +fn windows_shutdown() { + rustix::net::wsa_cleanup().unwrap(); +} -- cgit v1.2.3