summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/net/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/net/mod.rs')
-rw-r--r--vendor/rustix/src/net/mod.rs48
1 files changed, 48 insertions, 0 deletions
diff --git a/vendor/rustix/src/net/mod.rs b/vendor/rustix/src/net/mod.rs
new file mode 100644
index 000000000..24fe06dc3
--- /dev/null
+++ b/vendor/rustix/src/net/mod.rs
@@ -0,0 +1,48 @@
+//! Network-related operations.
+//!
+//! On Windows, one must call [`wsa_startup`] in the process before calling any
+//! of these APIs. [`wsa_cleanup`] may be used in the process if these APIs are
+//! no longer needed.
+//!
+//! [`wsa_startup`]: https://docs.rs/rustix/latest/x86_64-pc-windows-msvc/rustix/net/fn.wsa_startup.html
+//! [`wsa_cleanup`]: https://docs.rs/rustix/latest/x86_64-pc-windows-msvc/rustix/net/fn.wsa_cleanup.html
+
+#[cfg(not(feature = "std"))]
+mod addr;
+#[cfg(not(feature = "std"))]
+mod ip;
+mod send_recv;
+mod socket;
+mod socket_addr_any;
+#[cfg(not(any(windows, target_os = "wasi")))]
+mod socketpair;
+#[cfg(windows)]
+mod wsa;
+
+pub mod sockopt;
+
+pub use send_recv::{
+ recv, recvfrom, send, sendto, sendto_any, sendto_v4, sendto_v6, RecvFlags, SendFlags,
+};
+pub use socket::{
+ accept, accept_with, acceptfrom, acceptfrom_with, bind, bind_any, bind_v4, bind_v6, connect,
+ connect_any, connect_v4, connect_v6, getpeername, getsockname, listen, shutdown, socket,
+ socket_with, AcceptFlags, AddressFamily, Protocol, Shutdown, SocketFlags, SocketType,
+};
+pub use socket_addr_any::{SocketAddrAny, SocketAddrStorage};
+#[cfg(not(any(windows, target_os = "wasi")))]
+pub use socketpair::socketpair;
+#[cfg(feature = "std")]
+pub use std::net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6};
+#[cfg(windows)]
+pub use wsa::{wsa_cleanup, wsa_startup};
+#[cfg(not(feature = "std"))]
+pub use {
+ addr::{SocketAddr, SocketAddrV4, SocketAddrV6},
+ ip::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope},
+};
+#[cfg(unix)]
+pub use {
+ send_recv::sendto_unix,
+ socket::{bind_unix, connect_unix, SocketAddrUnix},
+};