diff options
| author | Michael Biebl <biebl@debian.org> | 2012-03-24 01:37:02 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2012-03-24 01:37:02 +0100 |
| commit | de06e5715e780baade318f3490ac7a4c9ce84e32 (patch) | |
| tree | 23fbc3fafc12072476eff98bee60100eb54c29db /src/wpa.h | |
| parent | b436a68a20ff3114ded32a7a3d70cdd4954039f9 (diff) | |
Imported Upstream version 0.9.4.0 upstream/0.9.4.0
Diffstat (limited to 'src/wpa.h')
| -rw-r--r-- | src/wpa.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/wpa.h b/src/wpa.h deleted file mode 100644 index 18d1dbee..00000000 --- a/src/wpa.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * wpa_supplicant - WPA definitions - * Copyright (c) 2003-2005, Jouni Malinen <jkmaline@cc.hut.fi> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * Alternatively, this file may be distributed under the terms of BSD - * license. - * - * See README and COPYING for more details. - */ - -#ifndef WPA_H -#define WPA_H - -#include <stdint.h> - -#define WPA_GENERIC_INFO_ELEM 0xdd -#define WPA_RSN_INFO_ELEM 0x30 - -#define WPA_MAX_IE_LEN 40 - -typedef struct wpa_ie_data { - int proto; - int pairwise_cipher; - int group_cipher; - int key_mgmt; - int capabilities; - int num_pmkid; - const uint8_t *pmkid; -} wpa_ie_data; - - -wpa_ie_data * wpa_parse_wpa_ie (const uint8_t *wpa_ie, size_t wpa_ie_len); - -#endif /* WPA_H */ |