aboutsummaryrefslogtreecommitdiffstats
path: root/ui/tap-credentials.h
blob: ef6de9ffa2460206d40c22dc653b1465ccf62bcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/** @file
 *
 * 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