From d817ddf51311f9df516f7645d7de1848421caf88 Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Fri, 20 May 2005 22:16:47 +0000 Subject: win32 only: get interface details from WinPcap's packet.dll (direct access to NDIS specific driver information, lower first part) svn path=/trunk/; revision=14406 --- capture_wpcap_packet.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 capture_wpcap_packet.h (limited to 'capture_wpcap_packet.h') 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 + * 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 */ -- cgit v1.2.3