vlan.h 727 B

123456789101112131415161718192021222324252627282930
  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. #define MAX_NUM_TAGGED_VLAN 32
  11. struct vlan_description {
  12. int notempty; /* 0 : no vlan information present, 1: else */
  13. int untagged; /* >0 802.1q vid */
  14. int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */
  15. };
  16. #ifndef CONFIG_NO_VLAN
  17. int vlan_compare(struct vlan_description *a, struct vlan_description *b);
  18. #else /* CONFIG_NO_VLAN */
  19. static inline int
  20. vlan_compare(struct vlan_description *a, struct vlan_description *b)
  21. {
  22. return 0;
  23. }
  24. #endif /* CONFIG_NO_VLAN */
  25. #endif /* VLAN_H */