[tcp] Enable AF_INET6 transport for tcp connections
[gpxe.git] / src / config / config_net80211.c
blobb33c363b1ff75a6f8f6862aa31729f7fe101031e
1 /*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License as
4 * published by the Free Software Foundation; either version 2, or (at
5 * your option) any later version.
6 */
8 FILE_LICENCE ( GPL2_OR_LATER );
10 #include <config/general.h>
12 /** @file
14 * 802.11 configuration options
19 * Drag in 802.11-specific commands
22 #ifdef IWMGMT_CMD
23 REQUIRE_OBJECT ( iwmgmt_cmd );
24 #endif
27 * Drag in 802.11 error message tables
30 #ifdef ERRMSG_80211
31 REQUIRE_OBJECT ( wireless_errors );
32 #endif
35 * Drag in 802.11 cryptosystems and handshaking protocols
38 #ifdef CRYPTO_80211_WEP
39 REQUIRE_OBJECT ( wep );
40 #endif
42 #ifdef CRYPTO_80211_WPA2
43 #define CRYPTO_80211_WPA
44 REQUIRE_OBJECT ( wpa_ccmp );
45 #endif
47 #ifdef CRYPTO_80211_WPA
48 REQUIRE_OBJECT ( wpa_psk );
49 REQUIRE_OBJECT ( wpa_tkip );
50 #endif