blob: 73316f547cacce4bec6bab5c2f23526602568bc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
hbbp_proto = Proto("hbbp","Home Brew Broadcast Protocol")
-- create a function to dissect it
function hbbp_proto.dissector(buffer,pinfo,tree)
pinfo.cols.protocol = "HBBP"
local subtree = tree:add(hbbp_proto,buffer(),"HBBP Data")
local i = 0
local b = buffer():bytes()
while (i<b:len() and b:get_index(i)~=0) do
i = i + 1
end
if i==0 then
return (nil)
end
subtree:add(buffer(0,i),"Task: " .. buffer(0,i):string())
if b:get_index(i) == 0 then
subtree:add(buffer(i+1),"Payload: [Length " .. buffer:len()-i .. "]")
end
end
-- load the udp.port table
udp_table = DissectorTable.get("udp.port")
-- register our protocol to handle udp port 4950
udp_table:add(4950,hbbp_proto)
|