-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
Websocket protocol upgrade failed in firefox #85
Comments
Thanks! This is the standard Firefox websocket client talking to the Rust server? |
Yes, the latest firefox 77.0.1. |
I pushed a change to the |
Tested. Works for me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Firefox sends header
Connection: keep-alive, Upgrade
, that thecheck_header
function could not handle.rust-websocket-lite/websocket-codec/src/upgrade.rs
Lines 73 to 88 in de4b4a6
actual.eq_ignore_ascii_case(expected)
should be replaced withcontainsXXX
.The text was updated successfully, but these errors were encountered: