Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-wps.h
1 /* packet-wps.h
2  *
3  * Wifi Simple Config aka Wifi Protected Setup
4  *
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
7  *
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
12  *
13  * Copyright 2007 Jens Braeuer <jensb@cs.tu-berlin.de>
14  *
15  * Wireshark - Network traffic analyzer
16  * By Gerald Combs <gerald@wireshark.org>
17  * Copyright 1998 Gerald Combs
18  *
19  * SPDX-License-Identifier: GPL-2.0-or-later
20  *
21  */
22 
23 #ifndef _packet_wps_h_
24 #define _packet_wps_h_
25 
26  /* Vendor-Type and Vendor-id */
27 #define WFA_VENDOR_ID 0x00372A
28 #define WFA_SIMPLECONFIG_TYPE 0x1
29 
30 void
31 dissect_wps_tlvs(proto_tree *eap_tree, tvbuff_t *tvb, int offset,
32  gint size, packet_info* pinfo);
33 
34 #endif
Definition: packet_info.h:44
Definition: proto.h:904
Definition: tvbuff-int.h:35