1 /*
2  * WPA Supplicant / Configuration backend: empty starting point
3  * Copyright (c) 2003-2005, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  *
8  * This file implements dummy example of a configuration backend. None of the
9  * functions are actually implemented so this can be used as a simple
10  * compilation test or a starting point for a new configuration backend.
11  */
12 
13 #include "includes.h"
14 
15 #include "common.h"
16 #include "config.h"
17 #include "base64.h"
18 
19 
20 struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
21 {
22 	struct wpa_config *config;
23 
24 	if (name == NULL)
25 		return NULL;
26 	if (cfgp)
27 		config = cfgp;
28 	else
29 		config = wpa_config_alloc_empty(NULL, NULL);
30 	if (config == NULL)
31 		return NULL;
32 	/* TODO: fill in configuration data */
33 	return config;
34 }
35 
36 
37 int wpa_config_write(const char *name, struct wpa_config *config)
38 {
39 	struct wpa_ssid *ssid;
40 	struct wpa_config_blob *blob;
41 
42 	wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
43 
44 	/* TODO: write global config parameters */
45 
46 
47 	for (ssid = config->ssid; ssid; ssid = ssid->next) {
48 		/* TODO: write networks */
49 	}
50 
51 	for (blob = config->blobs; blob; blob = blob->next) {
52 		/* TODO: write blobs */
53 	}
54 
55 	return 0;
56 }
57