diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-05-20 22:16:47 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-05-20 22:16:47 +0000 |
commit | d817ddf51311f9df516f7645d7de1848421caf88 (patch) | |
tree | ca72001262f1a4b6a04ecb72f53f8820c5a3103c /capture_wpcap_packet.h | |
parent | d2233711d902fc8312cb0fa74606df25467dde52 (diff) | |
download | wireshark-d817ddf51311f9df516f7645d7de1848421caf88.tar.gz wireshark-d817ddf51311f9df516f7645d7de1848421caf88.tar.bz2 wireshark-d817ddf51311f9df516f7645d7de1848421caf88.zip |
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
Diffstat (limited to 'capture_wpcap_packet.h')
-rw-r--r-- | capture_wpcap_packet.h | 44 |
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 */ |