We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
The HTTP Connection header is not mandatory and should be defaulted to keep-alive in HTTP/1.1.
Connection
keep-alive
Even so, the web socket code expects it to exist and will error if not supplied the header.
start = strstr(handshake, "\r\nConnection: "); if (!start) { err("missing Connection header"); return 0; }
Source:
KasmVNC/common/network/websocket.c
Lines 684 to 685 in 5ea11df
KasmVNC Details
Using kasmweb/alpine-320-desktop:1.16.1 from Docker Hub.
kasmweb/alpine-320-desktop:1.16.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The HTTP
Connection
header is not mandatory and should be defaulted tokeep-alive
in HTTP/1.1.Even so, the web socket code expects it to exist and will error if not supplied the header.
Source:
KasmVNC/common/network/websocket.c
Lines 684 to 685 in 5ea11df
KasmVNC Details
Using
kasmweb/alpine-320-desktop:1.16.1
from Docker Hub.The text was updated successfully, but these errors were encountered: