vlan.h 624 B

123456789101112131415161718192021222324252627
  1. /*
  2. * hostapd / VLAN definition
  3. * Copyright (c) 2015, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef VLAN_H
  9. #define VLAN_H
  10. struct vlan_description {
  11. int notempty; /* 0 : no vlan information present, 1: else */
  12. int untagged; /* >0 802.1q vid */
  13. };
  14. #ifndef CONFIG_NO_VLAN
  15. int vlan_compare(struct vlan_description *a, struct vlan_description *b);
  16. #else /* CONFIG_NO_VLAN */
  17. static inline int
  18. vlan_compare(struct vlan_description *a, struct vlan_description *b)
  19. {
  20. return 0;
  21. }
  22. #endif /* CONFIG_NO_VLAN */
  23. #endif /* VLAN_H */