(fd: Fd)
| 1689 | #[cfg(linux_kernel)] |
| 1690 | #[doc(alias = "SO_PEERCRED")] |
| 1691 | pub fn socket_peercred<Fd: AsFd>(fd: Fd) -> io::Result<super::UCred> { |
| 1692 | backend::net::sockopt::socket_peercred(fd.as_fd()) |
| 1693 | } |
| 1694 | |
| 1695 | /// `getsockopt(fd, SOL_SOCKET, SO_TXTIME)` — Get transmission timing configuration. |
| 1696 | #[cfg(all(target_os = "linux", feature = "time"))] |