(
stream: tokio::net::UnixStream,
db_handler: Arc<DbHandler>,
)
| 324 | |
| 325 | #[cfg(unix)] |
| 326 | async fn handle_unix_connection( |
| 327 | stream: tokio::net::UnixStream, |
| 328 | db_handler: Arc<DbHandler>, |
| 329 | ) -> Result<()> { |
| 330 | info!("Handling Unix socket connection"); |
| 331 | handle_connection_generic(stream, "unix-socket", db_handler).await |
| 332 | } |
| 333 | |
| 334 | async fn handle_connection_generic<S>( |
| 335 | stream: S, |
nothing calls this directly
no test coverage detected