aboutsummaryrefslogtreecommitdiffstats
path: root/capture-pcap-util.h
diff options
context:
space:
mode:
authorkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-04 11:19:29 +0000
committerkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-04 11:19:29 +0000
commite2a9bbf856a66fd5758a793102fae02c2b0d27e7 (patch)
treef0bdb59e0947e9cfeac882b6b58a4753af6511be /capture-pcap-util.h
parentfe3cb24e5e25869c8903fa2d8280778cffc0299a (diff)
Support for RPCAP features in GUI (from Boris Misenov, see Bug 1366)
- retrieving the list of remote PCAP interfaces - password authentication support - UDP data fransfer - packet sampling (available in WinPcap 4.x) etc. fix problem if non-default rpcap port is used git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23750 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture-pcap-util.h')
-rw-r--r--capture-pcap-util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/capture-pcap-util.h b/capture-pcap-util.h
index 6de58441a9..259a8ed48c 100644
--- a/capture-pcap-util.h
+++ b/capture-pcap-util.h
@@ -68,6 +68,11 @@ typedef struct {
} if_addr_t;
GList *get_interface_list(int *err, char **err_str);
+#ifdef HAVE_PCAP_REMOTE
+GList *get_remote_interface_list(const char *hostname, const char *port,
+ int auth_type, const char *username,
+ const char *passwd, int *err, char **err_str);
+#endif
/* Error values from "get_interface_list()/capture_interface_list()". */
#define CANT_GET_INTERFACE_LIST 1 /* error getting list */