blob: fba57b87ad7c605652c6f0a9d01c76c9b2e7cf61 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Configuration file parser
3 * Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
4 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef CONFIG_FILE_H
10#define CONFIG_FILE_H
11
12struct hostapd_config * hostapd_config_read(const char *fname);
Dmitry Shmidt04949592012-07-19 12:16:46 -070013int hostapd_set_iface(struct hostapd_config *conf,
14 struct hostapd_bss_config *bss, char *field,
15 char *value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070016
17#endif /* CONFIG_FILE_H */