From 37426267f4f03e296198aae819e84c1a15261432 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Tue, 22 Feb 2022 01:09:10 +0600 Subject: [PATCH] SEDbgMuxApp: fix do_ping(): ACKnowledge Pong message --- sedbgmux.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sedbgmux.py b/sedbgmux.py index 6ec06d4..6938fef 100755 --- a/sedbgmux.py +++ b/sedbgmux.py @@ -129,6 +129,7 @@ class SEDbgMuxApp(cmd2.Cmd): f = self.peer.recv() assert f['MsgType'] == DbgMuxFrame.MsgType.Pong log.info('Rx Pong with payload \'%s\'', f['Msg']) + self.peer.send(DbgMuxFrame.MsgType.Ack) establish_parser = cmd2.Cmd2ArgumentParser() establish_parser.add_argument('DPRef',