wireshark/epan/eapol_keydes_types.h
Dario Lombardo 55c68ee69c epan: use SPDX indentifiers.
Skipping dissectors dir for now.

Change-Id: I717b66bfbc7cc81b83f8c2cbc011fcad643796aa
Reviewed-on: https://code.wireshark.org/review/25694
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-02-08 19:29:45 +00:00

19 lines
507 B
C

/* eapol_keydes_types.h
* Declarations of EAPOL Key Descriptor types
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __EAPOL_KEYDES_TYPES_H__
#define __EAPOL_KEYDES_TYPES_H__
#define EAPOL_RC4_KEY 1 /* RC4 - deprecated */
#define EAPOL_RSN_KEY 2 /* 802.11i - "work in progress" */
#define EAPOL_WPA_KEY 254
#endif /* __EAPOL_KEYDES_TYPES_H__ */