workaround for failure to bind tcp/quic listeners
This commit is contained in:
parent
3fc796303a
commit
1c4e450f1d
4 changed files with 51 additions and 6 deletions
|
|
@ -32,10 +32,14 @@ where
|
|||
client_addr: SocketAddr, // アクセス制御用
|
||||
) -> Result<Response<Body>> {
|
||||
info!(
|
||||
"Handling {:?} request from {}: {} {} {:?}",
|
||||
"Handling {:?} request from {}: {} {:?} {} {:?}",
|
||||
req.version(),
|
||||
client_addr,
|
||||
req.method(),
|
||||
req
|
||||
.headers()
|
||||
.get("host")
|
||||
.map_or_else(|| "<none>", |h| h.to_str().unwrap()),
|
||||
req.uri(),
|
||||
req
|
||||
.headers()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue