blob: bef5a16f6c909cf5b368e758f1aa829d86a24cdc [file] [log] [blame]
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001/*
2 * hostapd / VLAN netlink 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
9#ifndef VLAN_UTIL_H
10#define VLAN_UTIL_H
11
12int vlan_add(const char *if_name, int vid, const char *vlan_if_name);
13int vlan_rem(const char *if_name);
14
15#endif /* VLAN_UTIL_H */