commit | 1bf00725dc7c18b8253cfcc63c600ab6a8c283d9 | [log] [tgz] |
---|---|---|
author | Jackie Ja <qazq.jackie@gmail.com> | Tue Oct 06 13:31:23 2020 +0800 |
committer | Jukka Rissanen <jukka.rissanen+github@gmail.com> | Tue Oct 06 12:02:06 2020 +0300 |
tree | 10949ad364ee118025365108d6c2355906c25fcf | |
parent | 1b79d5c279564a43e177cf67da310e0deadc93d8 [diff] |
net: websocket: Fix conflict flag The message type flag will be set to 0x11(WEBSOCKET_FLAG_FINAL(0x01) | WEBSOCKET_FLAG_PING(0x10)) when receiv PING with final fragment, it conficts with WEBSOCKET_FLAG_PONG(0x11) The WEBSOCKET_FLAG_PONG should be 0x20 Signed-off-by: Jackie Ja <qazq.jackie@gmail.com>