As mentioned in above figure If i want to display my lua scipt's version in About Wireshark. How can i do that? Is there any LUA API Available for this? asked 09 Jul '15, 04:11 ankit edited 09 Jul '15, 15:32 Guy Harris ♦♦ |
2 Answers:
No not yet. There's an open enhancement request in bugs.wireshark.org, as bug 11315. It won't be available until version 2.0, however. And it's not guaranteed to work the way it is suggested to in that enhancement request - it might just be implemented as a Lua function call instead of table attribute. answered 09 Jul '15, 07:14 Hadriel |
see: https://ask.wireshark.org/questions/43375/display-a-version-number-for-lua-dissector short version: Example Lua code:
answered 03 May ‘16, 03:46 KamratKalasson |
OK, thanks for info @hadriel But If my plugin is developed let's say using C language then how to set version of my own added plugin into this?
It's in the moduleinfo.h file for each plugin
Thanks @grahamb I got it now.