diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
commit | a86c5f7cae7ec9a3398300555a0b644689d946a1 (patch) | |
tree | 39fe4b107c71174fd1e8a8ceb9a4d2aa14116248 /ui/tap_export_pdu.h | |
parent | Releasing progress-linux version 4.2.6-1~progress7.99u1. (diff) | |
download | wireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.tar.xz wireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.zip |
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/tap_export_pdu.h')
-rw-r--r-- | ui/tap_export_pdu.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/tap_export_pdu.h b/ui/tap_export_pdu.h index fa25edb3..19f31e0d 100644 --- a/ui/tap_export_pdu.h +++ b/ui/tap_export_pdu.h @@ -22,7 +22,7 @@ typedef struct _exp_pdu_t { wtap_dumper* wdh; GArray* shb_hdrs; wtapng_iface_descriptions_t* idb_inf; - guint32 framenum; + uint32_t framenum; } exp_pdu_t; /** @@ -45,13 +45,13 @@ char *exp_pdu_pre_open(const char *tap_name, const char *filter, * @param[out] err Will be set to an error code on failure. * @param[out] err_info for some errors, a string giving more details of * the error -* @return TRUE on success or FALSE on failure. +* @return true on success or false on failure. */ -gboolean exp_pdu_open(exp_pdu_t *data, char *pathname, int file_type_subtype, - int fd, const char *comment, int *err, gchar **err_info); +bool exp_pdu_open(exp_pdu_t *data, char *pathname, int file_type_subtype, + int fd, const char *comment, int *err, char **err_info); /* Stops the PDUs export. */ -gboolean exp_pdu_close(exp_pdu_t *exp_pdu_tap_data, int *err, gchar **err_info); +bool exp_pdu_close(exp_pdu_t *exp_pdu_tap_data, int *err, char **err_info); #ifdef __cplusplus } |