Skip to content

Commit d624c82

Browse files
Updated libjuice to v1.5.1
1 parent a8bf0f9 commit d624c82

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

deps/libjuice

src/impl/wshandshake.cpp

+13-9
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ string WsHandshake::generateHttpRequest() {
6464
"Host: " +
6565
mHost +
6666
"\r\n"
67-
"Connection: upgrade\r\n"
67+
"Connection: Upgrade\r\n"
6868
"Upgrade: websocket\r\n"
6969
"Sec-WebSocket-Version: 13\r\n"
7070
"Sec-WebSocket-Key: " +
@@ -80,12 +80,18 @@ string WsHandshake::generateHttpRequest() {
8080

8181
string WsHandshake::generateHttpResponse() {
8282
std::unique_lock lock(mMutex);
83-
const string out = "HTTP/1.1 101 Switching Protocols\r\n"
84-
"Server: libdatachannel\r\n"
85-
"Connection: upgrade\r\n"
86-
"Upgrade: websocket\r\n"
87-
"Sec-WebSocket-Accept: " +
88-
computeAcceptKey(mKey) + "\r\n\r\n";
83+
84+
string out = "HTTP/1.1 101 Switching Protocols\r\n"
85+
"Server: libdatachannel\r\n"
86+
"Connection: Upgrade\r\n"
87+
"Upgrade: websocket\r\n"
88+
"Sec-WebSocket-Accept: " +
89+
computeAcceptKey(mKey) + "\r\n";
90+
91+
if (!mProtocols.empty())
92+
out += "Sec-WebSocket-Protocol: " + utils::implode(mProtocols, ',') + "\r\n";
93+
94+
out += "\r\n";
8995

9096
return out;
9197
}
@@ -119,8 +125,6 @@ string WsHandshake::generateHttpError(int responseCode) {
119125
const string out = "HTTP/1.1 " + error +
120126
"\r\n"
121127
"Server: libdatachannel\r\n"
122-
"Connection: upgrade\r\n"
123-
"Upgrade: websocket\r\n"
124128
"Content-Type: text/plain\r\n"
125129
"Content-Length: " +
126130
to_string(error.size()) +

0 commit comments

Comments
 (0)