From 00e6ded2e96b9ff41d0fa27a6e2d470fe35ea7cc Mon Sep 17 00:00:00 2001 From: Tim Ansell Date: Fri, 1 Sep 2017 23:16:09 +1000 Subject: [PATCH] Adding TCP port 1234 to Etherbone dissector. LiteEth designs seem to commonly use TCP port 1234. --- liteeth/software/dissectors/etherbone.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/liteeth/software/dissectors/etherbone.lua b/liteeth/software/dissectors/etherbone.lua index 0a629a4..d5ef9e8 100644 --- a/liteeth/software/dissectors/etherbone.lua +++ b/liteeth/software/dissectors/etherbone.lua @@ -221,3 +221,5 @@ end -- register eb protocol on UDP port 20000 local tab = DissectorTable.get("udp.port") tab:add(20000, proto_eb) +local tab = DissectorTable.get("tcp.port") +tab:add(1234, proto_eb)