vlan_init.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * hostapd / VLAN initialization
  3. * Copyright 2003, Instant802 Networks, Inc.
  4. * Copyright 2005, Devicescape Software, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #ifndef VLAN_INIT_H
  16. #define VLAN_INIT_H
  17. #ifndef CONFIG_NO_VLAN
  18. int vlan_init(struct hostapd_data *hapd);
  19. void vlan_deinit(struct hostapd_data *hapd);
  20. struct hostapd_vlan * vlan_add_dynamic(struct hostapd_data *hapd,
  21. struct hostapd_vlan *vlan,
  22. int vlan_id);
  23. int vlan_remove_dynamic(struct hostapd_data *hapd, int vlan_id);
  24. int vlan_setup_encryption_dyn(struct hostapd_data *hapd,
  25. struct hostapd_ssid *mssid,
  26. const char *dyn_vlan);
  27. #else /* CONFIG_NO_VLAN */
  28. static inline int vlan_init(struct hostapd_data *hapd)
  29. {
  30. return 0;
  31. }
  32. static inline void vlan_deinit(struct hostapd_data *hapd)
  33. {
  34. }
  35. static inline struct hostapd_vlan * vlan_add_dynamic(struct hostapd_data *hapd,
  36. struct hostapd_vlan *vlan,
  37. int vlan_id)
  38. {
  39. return NULL;
  40. }
  41. static inline int vlan_remove_dynamic(struct hostapd_data *hapd, int vlan_id)
  42. {
  43. return -1;
  44. }
  45. static inline int vlan_setup_encryption_dyn(struct hostapd_data *hapd,
  46. struct hostapd_ssid *mssid,
  47. const char *dyn_vlan)
  48. {
  49. return -1;
  50. }
  51. #endif /* CONFIG_NO_VLAN */
  52. #endif /* VLAN_INIT_H */