mirror of https://github.com/ekzhang/bore.git
Fix minor bug in server error handling
This commit is contained in:
parent
9a8fc8ec44
commit
f00281f2dc
|
@ -73,7 +73,11 @@ impl Server {
|
||||||
Ok(listener) => listener,
|
Ok(listener) => listener,
|
||||||
Err(_) => {
|
Err(_) => {
|
||||||
warn!(?port, "could not bind to local port");
|
warn!(?port, "could not bind to local port");
|
||||||
send_json(&mut stream, "port already in use").await?;
|
send_json(
|
||||||
|
&mut stream,
|
||||||
|
ServerMessage::Error("port already in use".into()),
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue