hostapd: Update vendor branch to 0.6.10
[dragonfly.git] / contrib / hostapd / hostapd / vlan_init.h
blobcf55ac2462209ed665fc0f77c8bccb3225c4d4c8
1 /*
2 * hostapd / VLAN initialization
3 * Copyright 2003, Instant802 Networks, Inc.
4 * Copyright 2005, Devicescape Software, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Alternatively, this software may be distributed under the terms of BSD
11 * license.
13 * See README and COPYING for more details.
16 #ifndef VLAN_INIT_H
17 #define VLAN_INIT_H
19 int vlan_init(struct hostapd_data *hapd);
20 void vlan_deinit(struct hostapd_data *hapd);
21 int vlan_reconfig(struct hostapd_data *hapd, struct hostapd_config *oldconf,
22 struct hostapd_bss_config *oldbss);
23 struct hostapd_vlan * vlan_add_dynamic(struct hostapd_data *hapd,
24 struct hostapd_vlan *vlan,
25 int vlan_id);
26 int vlan_remove_dynamic(struct hostapd_data *hapd, int vlan_id);
27 int vlan_setup_encryption_dyn(struct hostapd_data *hapd,
28 struct hostapd_ssid *mssid,
29 const char *dyn_vlan);
31 #endif /* VLAN_INIT_H */