@@ -64,7 +64,7 @@ string WsHandshake::generateHttpRequest() {
64
64
" Host: " +
65
65
mHost +
66
66
" \r\n "
67
- " Connection: upgrade \r\n "
67
+ " Connection: Upgrade \r\n "
68
68
" Upgrade: websocket\r\n "
69
69
" Sec-WebSocket-Version: 13\r\n "
70
70
" Sec-WebSocket-Key: " +
@@ -80,12 +80,18 @@ string WsHandshake::generateHttpRequest() {
80
80
81
81
string WsHandshake::generateHttpResponse () {
82
82
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 " ;
89
95
90
96
return out;
91
97
}
@@ -119,8 +125,6 @@ string WsHandshake::generateHttpError(int responseCode) {
119
125
const string out = " HTTP/1.1 " + error +
120
126
" \r\n "
121
127
" Server: libdatachannel\r\n "
122
- " Connection: upgrade\r\n "
123
- " Upgrade: websocket\r\n "
124
128
" Content-Type: text/plain\r\n "
125
129
" Content-Length: " +
126
130
to_string (error.size ()) +
0 commit comments