Listen on 0.0.0.0 instead of 127.0.0.1, log when starting listening

This commit is contained in:
HoLLy 2023-10-16 18:29:58 +02:00
Родитель 61e9d4424e
Коммит 6feb1056e7
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -10,7 +10,8 @@ use super::{commands_request::*, commands_response::*, handler::*};
const DEFAULT_PORT: u16 = 52736;
pub async fn run<T: FullHandler + Send>() -> Result<(), Box<dyn std::error::Error>> {
let listener = TcpListener::bind(("127.0.0.1", DEFAULT_PORT)).await?;
let listener = TcpListener::bind(("0.0.0.0", DEFAULT_PORT)).await?;
info!("Listening on 0.0.0.0:{DEFAULT_PORT}");
loop {
let (socket, addr) = listener.accept().await?;