Remove a few TODOs, either solved or converted to issue

This commit is contained in:
2024-08-19 02:43:05 +02:00
parent 94e0e5d6c7
commit 8fdfe457ac
5 changed files with 0 additions and 13 deletions

@ -47,7 +47,6 @@ pub async fn handle_command(
}
async fn socket_activate(config: ServerConfig) -> anyhow::Result<()> {
// TODO: allow getting socket path from other socket activation sources
let conn = get_socket_from_systemd().await?;
let uid = conn.peer_cred()?.uid();
let unix_user = UnixUser::from_uid(uid)?;

@ -32,8 +32,6 @@ use crate::{
// TODO: consider using a connection pool
// TODO: use tracing for login, so we can scope the log messages per incoming connection
pub async fn listen_for_incoming_connections(
socket_path: Option<PathBuf>,
config: ServerConfig,