You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config_net80211.c 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 of the
  5. * License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but
  8. * WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. * General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program; if not, write to the Free Software
  14. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. * 02110-1301, USA.
  16. */
  17. FILE_LICENCE ( GPL2_OR_LATER );
  18. #include <config/general.h>
  19. /** @file
  20. *
  21. * 802.11 configuration options
  22. *
  23. */
  24. PROVIDE_REQUIRING_SYMBOL();
  25. /*
  26. * Drag in 802.11-specific commands
  27. *
  28. */
  29. #ifdef IWMGMT_CMD
  30. REQUIRE_OBJECT ( iwmgmt_cmd );
  31. #endif
  32. /*
  33. * Drag in 802.11 error message tables
  34. *
  35. */
  36. #ifdef ERRMSG_80211
  37. REQUIRE_OBJECT ( wireless_errors );
  38. #endif
  39. /*
  40. * Drag in 802.11 cryptosystems and handshaking protocols
  41. *
  42. */
  43. #ifdef CRYPTO_80211_WEP
  44. REQUIRE_OBJECT ( wep );
  45. #endif
  46. #ifdef CRYPTO_80211_WPA2
  47. #define CRYPTO_80211_WPA
  48. REQUIRE_OBJECT ( wpa_ccmp );
  49. #endif
  50. #ifdef CRYPTO_80211_WPA
  51. REQUIRE_OBJECT ( wpa_psk );
  52. REQUIRE_OBJECT ( wpa_tkip );
  53. #endif