mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-31 13:50:36 +01:00
implement all methods for consistency
This commit is contained in:
parent
cbc7b73b1d
commit
00febdf255
|
|
@ -39,6 +39,9 @@ class Client(object):
|
|||
def mp_send(self, data):
|
||||
self.multiprocessingPipe.put(data, block=False)
|
||||
|
||||
def handleTextMessage(self, conn, message):
|
||||
pass
|
||||
|
||||
def handleBinaryMessage(self, conn, data):
|
||||
logger.error("unsupported binary message, discarding")
|
||||
|
||||
|
|
@ -307,3 +310,9 @@ class WebSocketMessageHandler(object):
|
|||
if not self.handshake:
|
||||
logger.warning("not answering client request since handshake is not complete")
|
||||
return
|
||||
|
||||
def handleBinaryMessage(self, conn, data):
|
||||
pass
|
||||
|
||||
def handleClose(self):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue