add parameter dcerpc_info to PIDL_dissect_ipv?address()
[metze/wireshark/wip.git] / capture_ifinfo.h
index 28ebb5c7010c133a683696907e21349a263fdc5d..b19454f89980f1f5e5cf0fc1dbb153b1005059df 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef __CAPTURE_IFINFO_H__
 #define __CAPTURE_IFINFO_H__
 
-#ifdef HAVE_LIBPCAP
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+typedef enum {
+       IF_WIRED,
+       IF_AIRPCAP,
+       IF_PIPE,
+       IF_STDIN,
+       IF_BLUETOOTH,
+       IF_WIRELESS,
+       IF_DIALUP,
+       IF_USB,
+       IF_VIRTUAL
+} interface_type;
 
 /*
  * The list of interfaces returned by "get_interface_list()" is
  */
 typedef struct {
        char    *name;          /* e.g. "eth0" */
-       char    *description;   /* from OS, e.g. "Local Area Connection" or NULL */
+       char    *friendly_name; /* from OS, e.g. "Local Area Connection", or
+                                  NULL if not available */
+       char    *vendor_description;
+                               /* vendor description from pcap_findalldevs(),
+                                  e.g. "Realtek PCIe GBE Family Controller",
+                                  or NULL if not available */
        GSList  *addrs;         /* containing address values of if_addr_t */
+       interface_type type;    /* type of interface */
        gboolean loopback;      /* TRUE if loopback, FALSE otherwise */
 } if_info_t;
 
@@ -57,18 +77,27 @@ typedef struct {
 /**
  * Fetch the interface list from a child process.
  */
-extern GList *capture_interface_list(int *err, char **err_str);
+extern GList *capture_interface_list(int *err, char **err_str, void (*update_cb)(void));
 
 /* Error values from "get_interface_list()/capture_interface_list()". */
 #define        CANT_GET_INTERFACE_LIST 1       /* error getting list */
 #define        NO_INTERFACES_FOUND     2       /* list is empty */
-#define        CANT_RUN_DUMPCAP        3       /* problem running dumpcap */
+#define        DONT_HAVE_PCAP          3       /* couldn't load WinPcap */
 
 void free_interface_list(GList *if_list);
 
 /*
- * The list of data link types returned by "get_pcap_linktype_list()" and
- * "capture_pcap_linktype_list()" is a list of these structures.
+ * "get_if_capabilities()" and "capture_if_capabilities()" return a pointer
+ * to an allocated instance of this structure.  "free_if_capabilities()"
+ * frees the returned instance.
+ */
+typedef struct {
+       gboolean        can_set_rfmon;  /* TRUE if can be put into monitor mode */
+       GList           *data_link_types;       /* GList of data_link_info_t's */
+} if_capabilities_t;
+
+/*
+ * Information about data link types.
  */
 typedef struct {
        int     dlt;            /* e.g. DLT_EN10MB (which is 1) */
@@ -79,10 +108,16 @@ typedef struct {
 /**
  * Fetch the linktype list for the specified interface from a child process.
  */
-extern GList *capture_pcap_linktype_list(const char *devname, char **err_str);
+extern if_capabilities_t *
+capture_get_if_capabilities(const char *devname, gboolean monitor_mode,
+                            char **err_str, void (*update_cb)(void));
+
+void free_if_capabilities(if_capabilities_t *caps);
 
-void free_pcap_linktype_list(GList *linktype_list);
+void add_interface_to_remote_list(if_info_t *if_info);
 
-#endif /* HAVE_LIBPCAP */
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
 
 #endif /* __CAPTURE_IFINFO_H__ */