Skip to content

Commit

Permalink
Merge pull request #135 from MrAPierce/master
Browse files Browse the repository at this point in the history
* Missing method for binary frame support
  • Loading branch information
anakod committed Jun 24, 2015
2 parents d524c72 + 11309c1 commit d538cd7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Sming/SmingCore/Network/HttpServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ void HttpServer::setWebSocketMessageHandler(WebSocketMessageDelegate handler)
wsMessage = handler;
}

void HttpServer::setWebSocketBinaryHandler(WebSocketBinaryDelegate handler)
{
wsBinary = handler;
}

void HttpServer::setWebSocketDisconnectionHandler(WebSocketDelegate handler)
{
wsDisconnect = handler;
Expand Down

0 comments on commit d538cd7

Please sign in to comment.