This is a tracking issue for the socket `so_mark` new function for [this PR](https://github.com/rust-lang/rust/pull/96334) <!-- A handful of oses can mark a socket for mainly for network filtering purpose here Linux using `SO_MARK` and FreeBSD `SO_USER_COOKIE` --> ### Public API ```rust // core::magic fn main() -> std::io::Result<()> { let sockid: u32 = 32; let socket = UnixDatagram::unbound()?; socket.set_mark(sockid) Ok(()) } ``` - [x] Implementation: #... - [ ] Final comment period (FCP) - [ ] Stabilization PR
This is a tracking issue for the socket
so_marknew function for this PRPublic API