From 479be7aa689fb1b21989255db5e0cd20536393d7 Mon Sep 17 00:00:00 2001 From: Matthew Wraith Date: Wed, 18 Aug 2021 00:37:50 -0700 Subject: [PATCH] Market State Ack ID --- btp.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/btp.lua b/btp.lua index effc328..9c545ea 100644 --- a/btp.lua +++ b/btp.lua @@ -397,7 +397,8 @@ end local function dissect_market_state(buffer, pinfo, tree) tree:add_le(market_state, buffer:range(0, 1)) - tree:add_le(product_id, buffer:range(1, 8)) + tree:add_le(ack_id, buffer:range(1, 8)) + tree:add_le(product_id, buffer:range(9, 8)) end local function dissect_heartbeat(buffer, pinfo, tree)