blob: 9ef6ac82913013ca494333806dcdab9e68d0c600 [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);
Sunil Ravib0ac25f2024-07-12 01:42:03 +000013int hostapd_config_read_rxkh_file(struct hostapd_bss_config *conf,
14 const char *fname);
Dmitry Shmidt04949592012-07-19 12:16:46 -070015int hostapd_set_iface(struct hostapd_config *conf,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080016 struct hostapd_bss_config *bss, const char *field,
Dmitry Shmidt04949592012-07-19 12:16:46 -070017 char *value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018
19#endif /* CONFIG_FILE_H */