Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
tlskeylog_launcher_dialog.h
Go to the documentation of this file.
1
10#ifndef TLSKEYLOG_DIALOG_H
11#define TLSKEYLOG_DIALOG_H
12
13#include <wireshark.h>
14#include <QProcess>
15#include <QDialog>
16
17#include <epan/prefs.h>
18
19namespace Ui {
20class TLSKeylogDialog;
21}
22
23class TLSKeylogDialog : public QDialog
24{
25 Q_OBJECT
26
27public:
28 explicit TLSKeylogDialog(QWidget &parent);
30
31private slots:
32 void on_launchActivated();
33 void on_saveActivated();
34 void on_resetActivated();
35 void on_browseKeylogPath();
36 void on_browseProgramPath();
37
38private:
39 Ui::TLSKeylogDialog *ui;
40
41 module_t *tls_module_;
42 pref_t *pref_tls_keylog_;
43
44 module_t *gui_module_;
45 pref_t *pref_tlskeylog_command_;
46};
47
48#endif // TLSKEYLOG_DIALOG_H
Definition tlskeylog_launcher_dialog.h:24
Definition prefs-int.h:27
Definition prefs.c:241