Wireshark mailing list archives

Re: Bit for starting / stopping / new Capture


From: Pascal Quantin <pascal.quantin () gmail com>
Date: Wed, 17 Feb 2016 16:23:55 +0100

Hi Tobias,

2016-02-17 16:16 GMT+01:00 FIXED-TERM Scholz Tobias (DC-IA/EAI) <
fixed-term.Tobias.Scholz () boschrexroth de>:

Hey,

I made some recherché, but couldn’t find any information to this topic. Is
there a possibility to know (special bit for example), whether the user
stopped, started the capture or opened Wireshark new?

That would be a great help for my dissector.


Not sure this is exactly your request, but you can register callbacks when
a capture is started / loaded / reloaded (when a preference changes for
example) and when it is closed with the following functions:

/**
 * Allow protocols to register "init" routines, which are called before
 * we make a pass through a capture file and dissect all its packets
 * (e.g., when we read in a new capture file, or run a "filter packets"
 * or "colorize packets" pass over the current capture file or when the
 * preferences are changed).
 */
WS_DLL_PUBLIC void register_init_routine(void (*func)(void));

/**
 * Allows protocols to register "cleanup" routines which are called
 * after closing a capture file (or when preferences are changed, in
 * that case these routines are called before the init routines are
 * executed). It can be used to release resources that are allocated in
 * register_init_routine.
 */
WS_DLL_PUBLIC void register_cleanup_routine(void (*func)(void));

Hope it helps,
Pascal.
___________________________________________________________________________
Sent via:    Wireshark-dev mailing list <wireshark-dev () wireshark org>
Archives:    https://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
             mailto:wireshark-dev-request () wireshark org?subject=unsubscribe

Current thread: