diff options
author | Tomas Kukosa <tomas.kukosa@siemens.com> | 2007-12-04 11:19:29 +0000 |
---|---|---|
committer | Tomas Kukosa <tomas.kukosa@siemens.com> | 2007-12-04 11:19:29 +0000 |
commit | 08bbd29c71b8068e419f95a7a8cb7332ef0a3a3d (patch) | |
tree | f0bdb59e0947e9cfeac882b6b58a4753af6511be /capture-pcap-util.h | |
parent | 48537a7a6505e68faadbed9837a4159c2758d442 (diff) | |
download | wireshark-08bbd29c71b8068e419f95a7a8cb7332ef0a3a3d.tar.gz wireshark-08bbd29c71b8068e419f95a7a8cb7332ef0a3a3d.tar.bz2 wireshark-08bbd29c71b8068e419f95a7a8cb7332ef0a3a3d.zip |
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
svn path=/trunk/; revision=23750
Diffstat (limited to 'capture-pcap-util.h')
-rw-r--r-- | capture-pcap-util.h | 5 |
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 */ |