Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/inspector_socket.cc
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ class WsHandler : public ProtocolHandler {
WsHandler(InspectorSocket* inspector, TcpHolder::Pointer tcp)
: ProtocolHandler(inspector, std::move(tcp)),
OnCloseSent(&WsHandler::WaitForCloseReply),
OnCloseRecieved(&WsHandler::CloseFrameReceived),
OnCloseReceived(&WsHandler::CloseFrameReceived),
dispose_(false) { }

void AcceptUpgrade(const std::string& accept_key) override { }
Expand Down Expand Up @@ -369,7 +369,7 @@ class WsHandler : public ProtocolHandler {
}

void WaitForCloseReply() {
OnCloseRecieved = &WsHandler::OnEof;
OnCloseReceived = &WsHandler::OnEof;
}

void SendClose() {
Expand All @@ -396,7 +396,7 @@ class WsHandler : public ProtocolHandler {
OnEof();
bytes_consumed = 0;
} else if (r == FRAME_CLOSE) {
(this->*OnCloseRecieved)();
(this->*OnCloseReceived)();
bytes_consumed = 0;
} else if (r == FRAME_OK) {
delegate()->OnWsFrame(output);
Expand All @@ -406,7 +406,7 @@ class WsHandler : public ProtocolHandler {


Callback OnCloseSent;
Callback OnCloseRecieved;
Callback OnCloseReceived;
bool dispose_;
};

Expand Down