Wireshark 4.7.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 "ui/capture_opts.h"
18
19namespace Ui {
20class RemoteCaptureDialog;
21}
22
26class RemoteCaptureDialog : public QDialog
27{
28 Q_OBJECT
29
30public:
35 explicit RemoteCaptureDialog(QWidget *parent = 0);
36
40 ~RemoteCaptureDialog();
41
42signals:
48 void remoteAdded(GList *rlist, remote_options *roptions);
49
50private slots:
55 void on_pwAuth_toggled(bool checked);
56
61 void on_nullAuth_toggled(bool checked);
62
66 void apply_remote();
67
72 void hostChanged(const QString host);
73
74private:
76 Ui::RemoteCaptureDialog *ui;
77
81 void fillComboBox();
82};
83#endif
84#endif // REMOTE_CAPTURE_DIALOG_H