mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
fix connection upgrade
This commit is contained in:
parent
9653a1fa98
commit
78e6149d9f
1 changed files with 5 additions and 1 deletions
|
@ -138,8 +138,12 @@ impl Task {
|
|||
}
|
||||
}
|
||||
|
||||
// Connection upgrade
|
||||
if msg.upgrade() {
|
||||
msg.headers.insert(CONNECTION, HeaderValue::from_static("upgrade"));
|
||||
}
|
||||
// keep-alive
|
||||
if msg.keep_alive() {
|
||||
else if msg.keep_alive() {
|
||||
if msg.version < Version::HTTP_11 {
|
||||
msg.headers.insert(CONNECTION, HeaderValue::from_static("keep-alive"));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue