diff options
author | Irene Ruengeler <ruengeler@wireshark.org> | 2014-07-09 13:50:11 +0200 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2014-07-11 04:29:46 +0000 |
commit | c7b45d0a7ddeb5a416992fcd7c35062213a688f5 (patch) | |
tree | f055dc4eea8d90e2a236fd9b117ef8c48781202e /capture_opts.h | |
parent | 9ed99d5c4ea354e96c7617e6c4583b4306b2ae37 (diff) | |
download | wireshark-c7b45d0a7ddeb5a416992fcd7c35062213a688f5.tar.gz wireshark-c7b45d0a7ddeb5a416992fcd7c35062213a688f5.tar.bz2 wireshark-c7b45d0a7ddeb5a416992fcd7c35062213a688f5.zip |
GTK Remote Capturing
Move the GTK files necessary for managing the recnet remote host from capture_dlg.c to recent.c in order to use them in QT, too.
Change-Id: I3f3fd31ce928162de08c6db7309ef2a9b1e97760
Reviewed-on: https://code.wireshark.org/review/2955
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'capture_opts.h')
-rw-r--r-- | capture_opts.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/capture_opts.h b/capture_opts.h index 50894f5469..69f4d2d7bd 100644 --- a/capture_opts.h +++ b/capture_opts.h @@ -147,6 +147,14 @@ struct remote_host_info { gboolean nocap_local; }; +struct remote_host { + gchar *r_host; /**< Host name or network address for remote capturing */ + gchar *remote_port; /**< TCP port of remote RPCAP server */ + gint auth_type; /**< Authentication type */ + gchar *auth_username; /**< Remote authentication parameters */ + gchar *auth_password; /**< Remote authentication parameters */ +}; + typedef struct remote_options_tag { capture_source src_type; struct remote_host_info remote_host_opts; |