diff options
author | Luca <deri@ntop.org> | 2017-06-20 14:19:55 -0400 |
---|---|---|
committer | Luca <deri@ntop.org> | 2017-06-20 14:19:55 -0400 |
commit | e2119896db85f1caa22ca8ba7c8be46a246e5ce4 (patch) | |
tree | 84272572f69c81fe97319f4c9d464305e8f8167e /wireshark | |
parent | 68f1653dec9bdffa96479c8245529c76c604c30a (diff) |
Added protocl info in wireshark info columm
Diffstat (limited to 'wireshark')
-rw-r--r-- | wireshark/ndpi.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wireshark/ndpi.lua b/wireshark/ndpi.lua index 495d4c14c..6724ebfcf 100644 --- a/wireshark/ndpi.lua +++ b/wireshark/ndpi.lua @@ -743,8 +743,8 @@ function ndpi_proto.dissector(tvb, pinfo, tree) if(application_protocol ~= 0) then -- Set protocol name in the wireshark protocol column (if not Unknown) - --pinfo.cols.protocol = name - print(network_protocol .. "/" .. application_protocol .. "/".. name) + pinfo.cols.protocol = name + --print(network_protocol .. "/" .. application_protocol .. "/".. name) end if(compute_flows_stats) then |