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
Http header names are not case sensitive, bool MQTTWSTraits::connect(WiFiClient* clientIn, const char* host, int port, const char *path) does a case sensitive coparison of the headers (temp.startsWith("upgrade: websocket").
If a client sends the header in different casing as expected, the websocket connection will fail.
The text was updated successfully, but these errors were encountered:
Http header names are not case sensitive,
bool MQTTWSTraits::connect(WiFiClient* clientIn, const char* host, int port, const char *path)
does a case sensitive coparison of the headers (temp.startsWith("upgrade: websocket")
.If a client sends the header in different casing as expected, the websocket connection will fail.
The text was updated successfully, but these errors were encountered: