wireshark/ui/tap-credentials.h
Dario Lombardo aa434673bf credentials: don't use wmem file scope but a local copy.
Change-Id: I44ca95bffd682a7f2e83b71400937a949f5886ea
Reviewed-on: https://code.wireshark.org/review/33844
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
Reviewed-by: Dario Lombardo <lomato@gmail.com>
2019-07-05 12:26:44 +00:00

27 lines
570 B
C

/* tap-credentials.h
* Tap credentials data structure
* Copyright 2019 - Dario Lombardo <lomato@gmail.com>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* 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