aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wps.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2007-11-23 17:48:28 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2007-11-23 17:48:28 +0000
commitd6f0b0c2af0ffe31b276a011c7bc16ec6bde4c86 (patch)
tree77cea4c1b104973eb759657805f7fed57e213235 /epan/dissectors/packet-wps.h
parent5e1ffde52007119e6b19a4de1ae7b91fd76d7e90 (diff)
From Jens Braeuer:
Added support for Wifi Simple Config aka Wifi Protected Setup From me: Added standard copyright header to packet-wps svn path=/trunk/; revision=23549
Diffstat (limited to 'epan/dissectors/packet-wps.h')
-rw-r--r--epan/dissectors/packet-wps.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/epan/dissectors/packet-wps.h b/epan/dissectors/packet-wps.h
new file mode 100644
index 0000000000..6e5a53c7ee
--- /dev/null
+++ b/epan/dissectors/packet-wps.h
@@ -0,0 +1,47 @@
+/* packet-wps.h
+ *
+ * Wifi Simple Config aka Wifi Protected Setup
+ *
+ * Written by Jens Braeuer using WiFi-Alliance Spec 1.0h and
+ * parts of a patch by JP Jiang and Philippe Teuwen. November 2007
+ *
+ * Spec:
+ * https://www.wi-fi.org/knowledge_center_overview.php?type=4
+ * Patch:
+ * http://wireshark.digimirror.nl/lists/wireshark-dev/200703/msg00121.html
+ *
+ * Copyright 2007 Jens Braeuer <jensb@cs.tu-berlin.de>
+ *
+ * $Id:$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 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 _packet_wps_h_
+#define _packet_wps_h_
+
+void
+dissect_exteap_wps(proto_tree *eap_tree, tvbuff_t *tvb, int offset,
+ gint size, packet_info* pinfo);
+void
+dissect_wps_tlvs(proto_tree *eap_tree, tvbuff_t *tvb, int offset,
+ gint size, packet_info* pinfo);
+
+#endif