(listener: UnixListener, expected_peer_pid: Option<u32>)
| 428 | |
| 429 | impl AuthenticatedUnixIncoming { |
| 430 | fn new(listener: UnixListener, expected_peer_pid: Option<u32>) -> Self { |
| 431 | Self { |
| 432 | listener, |
| 433 | expected_uid: current_euid(), |
| 434 | expected_peer_pid, |
| 435 | } |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | impl Stream for AuthenticatedUnixIncoming { |
nothing calls this directly
no test coverage detected