diff options
Diffstat (limited to 'src/ap/vlan_util.h')
-rw-r--r-- | src/ap/vlan_util.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ap/vlan_util.h b/src/ap/vlan_util.h new file mode 100644 index 000000000000..bef5a16f6c90 --- /dev/null +++ b/src/ap/vlan_util.h @@ -0,0 +1,15 @@ +/* + * hostapd / VLAN netlink api + * Copyright (c) 2012, Michael Braun <michael-dev@fami-braun.de> + * + * This software may be distributed under the terms of the BSD license. + * See README for more details. + */ + +#ifndef VLAN_UTIL_H +#define VLAN_UTIL_H + +int vlan_add(const char *if_name, int vid, const char *vlan_if_name); +int vlan_rem(const char *if_name); + +#endif /* VLAN_UTIL_H */ |