Hello, In wait_msg, the PINGRESP message is ignored: ```python if res == b"\xd0": # PINGRESP sz = self.sock.read(1)[0] assert sz == 0 return None ``` Shouldn't this return some information so that the calling code can determine if the server is indeed responding to pings?