HACK: pinfo->private_data points to smb_info again
[wireshark-wip.git] / epan / dissectors / packet-wps.h
blobcd3ba0d5f3a4412a6e5632956f8c129db81609a3
1 /* packet-wps.h
3 * Wifi Simple Config aka Wifi Protected Setup
5 * Written by Jens Braeuer using WiFi-Alliance Spec 1.0h and
6 * parts of a patch by JP Jiang and Philippe Teuwen. November 2007
8 * Spec:
9 * https://www.wi-fi.org/knowledge_center_overview.php?type=4
10 * Patch:
11 * http://wireshark.digimirror.nl/lists/wireshark-dev/200703/msg00121.html
13 * Copyright 2007 Jens Braeuer <jensb@cs.tu-berlin.de>
15 * $Id$
17 * Wireshark - Network traffic analyzer
18 * By Gerald Combs <gerald@wireshark.org>
19 * Copyright 1998 Gerald Combs
21 * This program is free software; you can redistribute it and/or
22 * modify it under the terms of the GNU General Public License
23 * as published by the Free Software Foundation; either version 2
24 * of the License, or (at your option) any later version.
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
31 * You should have received a copy of the GNU General Public License
32 * along with this program; if not, write to the Free Software
33 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
37 #ifndef _packet_wps_h_
38 #define _packet_wps_h_
40 void
41 dissect_exteap_wps(proto_tree *eap_tree, tvbuff_t *tvb, int offset,
42 gint size, packet_info* pinfo);
43 void
44 dissect_wps_tlvs(proto_tree *eap_tree, tvbuff_t *tvb, int offset,
45 gint size, packet_info* pinfo);
47 #endif