8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccbef0f commit 21e959cCopy full SHA for 21e959c
src/WebSockets.cpp
@@ -397,7 +397,7 @@ String WebSockets::acceptKey(String clientKey) {
397
#ifdef ESP8266
398
sha1(clientKey + "258EAFA5-E914-47DA-95CA-C5AB0DC85B11", &sha1HashBin[0]);
399
#else
400
- clientKey =+ "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
+ clientKey += "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
401
SHA1_CTX ctx;
402
SHA1Init(&ctx);
403
SHA1Update(&ctx, (const unsigned char*)clientKey.c_str(), clientKey.length());
0 commit comments