Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
remote_capture_dialog.h
Go to the documentation of this file.
1
10#ifndef REMOTE_CAPTURE_DIALOG_H
11#define REMOTE_CAPTURE_DIALOG_H
12
13#include <config.h>
14
15#ifdef HAVE_PCAP_REMOTE
16#include <QDialog>
17#include "capture_opts.h"
18
19namespace Ui {
20class RemoteCaptureDialog;
21}
22
23class RemoteCaptureDialog : public QDialog
24{
25 Q_OBJECT
26
27public:
28 explicit RemoteCaptureDialog(QWidget *parent = 0);
29 ~RemoteCaptureDialog();
30
31signals:
32 void remoteAdded(GList *rlist, remote_options *roptions);
33
34private slots:
35 void on_pwAuth_toggled(bool checked);
36 void on_nullAuth_toggled(bool checked);
37 void apply_remote();
38 void hostChanged(const QString host);
39
40private:
41 Ui::RemoteCaptureDialog *ui;
42
43 void fillComboBox();
44};
45#endif
46#endif // REMOTE_CAPTURE_DIALOG_H