From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- ui/tap-credentials.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ui/tap-credentials.h (limited to 'ui/tap-credentials.h') diff --git a/ui/tap-credentials.h b/ui/tap-credentials.h new file mode 100644 index 0000000..ef6de9f --- /dev/null +++ b/ui/tap-credentials.h @@ -0,0 +1,27 @@ +/** @file + * + * Tap credentials data structure + * Copyright 2019 - Dario Lombardo + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef __TAP_CREDENTIALS_H__ +#define __TAP_CREDENTIALS_H__ + +#define TAP_CREDENTIALS_PLACEHOLDER "n.a." + +typedef struct tap_credential { + guint num; + guint username_num; + guint password_hf_id; + gchar* username; + const gchar* proto; + gchar* info; +} tap_credential_t; + +#endif -- cgit v1.2.3