wireshark/packaging
Moshe Kaplan f413260df9 WSLUA: Add new lua function register_packet_menu()
This adds support to Wireshark for custom context menus for packets, so
that when a packet's context menu is opened (e.g., by right-clicking),
Wireshark can support doing things like "run a program" or
"open a URL" with a field from the packet as a parameter. Note that
this is similar to ArcSight's integration commands feature.

For example, it could be used like the following:

```
ROBTEX_URL = "https://www.robtex.com/dns-lookup/"
local function search_robtex(...)
    local fields = {...};

    for i, field in ipairs( fields ) do
        if (field.name == 'http.host') then
            browser_open_url(ROBTEX_URL .. field.value)
            break
        end
    end
end
register_packet_menu("Search host in Robtex", search_robtex, "http.host");
```

Fixes issue #14998
2022-12-07 18:47:14 +00:00
..
appimage Packaging: Add initial support for AppImage. 2018-12-12 21:02:44 +00:00
debian WSLUA: Add new lua function register_packet_menu() 2022-12-07 18:47:14 +00:00
macosx Update our Logray icons. 2022-10-08 15:08:22 -07:00
nsis Windows: install etwdump extcap utility by default 2022-11-04 23:30:56 +00:00
portableapps Fix some spelling errors. 2022-09-06 10:15:11 +01:00
rpm rpm packaging: Add .el7, .fc38, ... 2022-12-06 20:24:39 +00:00
source Packaging: Fix our tarball commit logic. 2022-10-20 15:39:53 -07:00
wix Windows: Add missing license file to installer 2022-07-27 22:27:50 +00:00