vlan_util.h 980 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * hostapd / VLAN netlink/ioctl api
  3. * Copyright (c) 2012, Michael Braun <michael-dev@fami-braun.de>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef VLAN_UTIL_H
  9. #define VLAN_UTIL_H
  10. struct hostapd_data;
  11. struct hostapd_vlan;
  12. struct full_dynamic_vlan;
  13. int vlan_add(const char *if_name, int vid, const char *vlan_if_name);
  14. int vlan_rem(const char *if_name);
  15. int vlan_set_name_type(unsigned int name_type);
  16. int ifconfig_helper(const char *if_name, int up);
  17. int ifconfig_up(const char *if_name);
  18. int iface_exists(const char *ifname);
  19. int vlan_if_remove(struct hostapd_data *hapd, struct hostapd_vlan *vlan);
  20. struct full_dynamic_vlan *
  21. full_dynamic_vlan_init(struct hostapd_data *hapd);
  22. void full_dynamic_vlan_deinit(struct full_dynamic_vlan *priv);
  23. void vlan_newlink(const char *ifname, struct hostapd_data *hapd);
  24. void vlan_dellink(const char *ifname, struct hostapd_data *hapd);
  25. #endif /* VLAN_UTIL_H */