You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug: 482187 - HTTP headers should be case-insensitive for websockets
Optimising the WebSocket headers case insensitivity fix by hardcoding the headers as lower case and removing the need for .toLowerCase() calls
Signed-off-by: James Sutton <james.sutton@uk.ibm.com>
Copy file name to clipboardExpand all lines: org.eclipse.paho.client.mqttv3/src/main/java/org/eclipse/paho/client/mqttv3/internal/websocket/WebSocketHandshake.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -34,8 +34,8 @@ public class WebSocketHandshake {
34
34
// Do not change: https://tools.ietf.org/html/rfc6455#section-1.3
0 commit comments