aboutsummaryrefslogtreecommitdiffstats
path: root/capture_wpcap_packet.h
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-05-20 22:16:47 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-05-20 22:16:47 +0000
commit3086aeafedbfb4324c5f317a8fecb117c5053fe2 (patch)
treeca72001262f1a4b6a04ecb72f53f8820c5a3103c /capture_wpcap_packet.h
parent225928cf89110ee1c37ab58c8565b61b101038e9 (diff)
win32 only: get interface details from WinPcap's packet.dll (direct access to NDIS specific driver information, lower first part)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14406 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture_wpcap_packet.h')
-rw-r--r--capture_wpcap_packet.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/capture_wpcap_packet.h b/capture_wpcap_packet.h
new file mode 100644
index 0000000000..f003d52425
--- /dev/null
+++ b/capture_wpcap_packet.h
@@ -0,0 +1,44 @@
+/* capture_wpcap_packet.h
+ *
+ * $Id$
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@zing.org>
+ * Copyright 2001 Gerald Combs
+ *
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * 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.
+ */
+
+#ifndef CAPTURE_WPCAP_PACKET_H
+#define CAPTURE_WPCAP_PACKET_H
+
+
+extern void wpcap_packet_load(void);
+
+/* open the interface */
+extern LPADAPTER wpcap_packet_open(char *if_name);
+
+/* close the interface */
+extern void wpcap_packet_close(LPADAPTER adapter);
+
+extern int wpcap_packet_request(LPADAPTER a, ULONG Oid, int set, char *value, unsigned int *length);
+
+extern int wpcap_packet_request_uint(LPADAPTER a, ULONG Oid, UINT *value);
+
+extern int wpcap_packet_request_ulong(LPADAPTER a, ULONG Oid, ULONG *value);
+
+
+#endif /* CAPTURE_WPCAP_PACKET_H */