Wireshark-bugs: [Wireshark-bugs] [Bug 11968] Add function to Plugin IF to get capture file statu
Date: Wed, 06 Jan 2016 22:19:19 +0000

Comment # 1 on bug 11968 from
I have realised that this could be easily extended to retrieve information
other than that related to the loaded capture file.  For this reason I have
made some minor changes to the interface like this:

typedef struct _ws_info_t ws_info_t;

struct _ws_info_t
{
    file_state cf_state;                /* Current state of capture file */
    gchar * cf_filename;                /* Name of capture file */
    guint32 cf_count;                   /* Total number of frames */
    guint32 cf_framenr;                 /**< Currently displayed frame number
*/
    unsigned int frame_passed_dfilter;  /**< 1 = display, 0 = no display */
};


WS_DLL_PUBLIC void plugin_if_get_ws_info(ws_info_t * ws_info);


You are receiving this mail because:
  • You are watching all bug changes.