Commit d3bc55c
Egor Gorbunov
Preserve client case for selected subprotocol
WebSocket implementation in chromium rejects
ws connections in case server side responses with
Sec-WebSocket-Protocol header which values does
not match values sent in the same header by client
In case you use protocols to send case-sensitive text
(for example, auth tokens) you end up with inability
to establish websocket connection from chromium.
So lets make selected protocol completely match one
send by the client. This patch does not break negotiation
rules and server protocols are still matched against client
protocols using EqualFold.1 parent c9f314a commit d3bc55c
2 files changed
+14
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
219 | 219 | | |
220 | 220 | | |
221 | 221 | | |
222 | | - | |
| 222 | + | |
223 | 223 | | |
224 | 224 | | |
225 | 225 | | |
| |||
349 | 349 | | |
350 | 350 | | |
351 | 351 | | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
352 | 356 | | |
353 | 357 | | |
354 | 358 | | |
355 | 359 | | |
356 | 360 | | |
357 | | - | |
| 361 | + | |
| 362 | + | |
| 363 | + | |
358 | 364 | | |
359 | 365 | | |
360 | 366 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
224 | 224 | | |
225 | 225 | | |
226 | 226 | | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
| 232 | + | |
227 | 233 | | |
228 | 234 | | |
229 | 235 | | |
| |||
0 commit comments