blob: 10040b920998cd8fd2ceeab619f8bbffd6822ad5 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef TLSKEYLOG_DIALOG_H
#define TLSKEYLOG_DIALOG_H
#include <wireshark.h>
#include <QProcess>
#include <QDialog>
#include <epan/prefs.h>
namespace Ui {
class TLSKeylogDialog;
}
class TLSKeylogDialog : public QDialog
{
Q_OBJECT
public:
explicit TLSKeylogDialog(QWidget &parent);
~TLSKeylogDialog();
private slots:
void on_launchActivated();
void on_saveActivated();
void on_resetActivated();
void on_browseKeylogPath();
void on_browseProgramPath();
private:
Ui::TLSKeylogDialog *ui;
module_t *tls_module_;
pref_t *pref_tls_keylog_;
module_t *gui_module_;
pref_t *pref_tlskeylog_command_;
};
#endif // TLSKEYLOG_DIALOG_H
|