mirror of
https://git.alemi.dev/http-debugger.git
synced 2024-11-21 15:04:49 +01:00
fix: filter out 'host' header
This commit is contained in:
parent
b2fbac1193
commit
67019e1743
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "http-debugger"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
@ -71,7 +71,7 @@ async fn echo_json(mut req: Request<Body>) -> Result<Response<Body>, hyper::http
|
|||
path: req.uri().to_string(),
|
||||
method: req.method().to_string(),
|
||||
version: format!("{:?}", req.version()),
|
||||
headers: req.headers().iter().map(|(k, v)| parse_header(k, v)).collect(),
|
||||
headers: req.headers().iter().map(|(k, v)| parse_header(k, v)).filter(|(k, _v)| k != "host").collect(),
|
||||
body: String::from_utf8(body::to_bytes(req.body_mut()).await.unwrap().to_vec()).ok(),
|
||||
time: SystemTime::now().duration_since(UNIX_EPOCH).unwrap_or(Duration::from_secs(0)).as_millis(),
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue