Files
rust/library/std/src
Matthias Krüger 9f3786b2b1 Rollup merge of #101967 - jmillikin:linux-abstract-socket-addr, r=joshtriplett
Move `unix_socket_abstract` feature API to `SocketAddrExt`.

The pre-stabilized API for abstract socket addresses exposes methods on `SocketAddr` that are only enabled for `cfg(any(target_os = "android", target_os = "linux"))`. Per discussion in <https://github.com/rust-lang/rust/issues/85410>, moving these methods to an OS-specific extension trait is required before stabilization can be considered.

This PR makes four changes:
1. The internal module `std::os::net` contains logic for the unstable feature `tcp_quickack` (https://github.com/rust-lang/rust/issues/96256). I moved that code into `linux_ext/tcp.rs` and tried to adjust the module tree so it could accommodate a second unstable feature there.
2. Moves the public API out of `impl SocketAddr`, into `impl SocketAddrExt for SocketAddr` (the headline change).
3. The existing function names and docs for `unix_socket_abstract` refer to addresses as being created from abstract namespaces, but a more accurate description is that they create sockets in *the* abstract namespace. I adjusted the function signatures correspondingly and tried to update the docs to be clearer.
4. I also tweaked `from_abstract_name` so it takes an `AsRef<[u8]>` instead of `&[u8]`, allowing `b""` literals to be passed directly.

Issues:
1. The public module `std::os::linux::net` is marked as part of `tcp_quickack`. I couldn't figure out how to mark a module as being part of two unstable features, so I just left the existing attributes in place. My hope is that this will be fixed as a side-effect of stabilizing either feature.
2022-11-14 19:26:14 +01:00
..
2022-08-01 20:10:40 +00:00
2022-07-18 15:06:07 +01:00
2022-10-24 01:06:34 -07:00
2022-10-31 12:17:30 -04:00
2022-08-18 18:07:39 -04:00
2022-03-23 05:33:44 +00:00
2022-11-06 15:32:59 +01:00
2022-08-18 18:07:39 -04:00
2022-04-14 01:33:13 -04:00
2022-09-28 21:51:09 +02:00
2022-09-26 10:14:45 +02:00
2022-10-10 17:05:59 -07:00
2022-10-07 15:21:47 +02:00
2022-11-08 17:39:40 +01:00
2022-10-06 09:55:32 +02:00
2022-11-06 17:11:02 -05:00