diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2016-01-03 13:48:39 +0100 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2016-01-11 07:43:36 +0000 |
commit | ebdaace0025749dd68a1cef7d0fd83b596861edf (patch) | |
tree | a89e4dadb12d879f9391b8959cf2b46d80457ac5 /ui/cli/tap-funnel.c | |
parent | 515502fd9b76228d5f82ccfae761b4f9e75e7ceb (diff) | |
download | wireshark-ebdaace0025749dd68a1cef7d0fd83b596861edf.tar.gz wireshark-ebdaace0025749dd68a1cef7d0fd83b596861edf.tar.bz2 wireshark-ebdaace0025749dd68a1cef7d0fd83b596861edf.zip |
Lua: Added reload_lua_plugins
This makes it possible to trigger reloading Lua plugins from
within a Lua plugin. This can be used when having a plugin to
update local plugins from a external source.
Renamed reload() to reload_packets() to clarify what's reloaded,
and added a alias (marked as obsoleted) from reload().
Change-Id: I4e529992af5f651613950329e73718dbda317d2e
Reviewed-on: https://code.wireshark.org/review/13024
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/cli/tap-funnel.c')
-rw-r--r-- | ui/cli/tap-funnel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/cli/tap-funnel.c b/ui/cli/tap-funnel.c index 6d9d48dd3d..5f20d3ec1b 100644 --- a/ui/cli/tap-funnel.c +++ b/ui/cli/tap-funnel.c @@ -112,6 +112,7 @@ static const funnel_ops_t funnel_ops = { NULL, NULL, NULL, + NULL, NULL }; |