blob: 90babaa1d22dabe07e5652bca7080dbab8531bba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#ifndef CONFIGURATION_H
#define CONFIGURATION_H
#include <stdbool.h>
#include <stdint.h>
#include <types/types.h>
#define HWADDR_SIZE 6
struct interface_config {
uint8_t hwaddr[HWADDR_SIZE];
bool ignore;
enum {
CONFIG_METHOD_DHCP,
CONFIG_METHOD_STATIC,
} method;
union {
struct {
} dhcp_config;
struct {
char *address;
char *gateway;
} static_config;
};
};
struct network_config {
struct interface_config **interfaces;
int n_interfaces;
const char **dns_servers;
int n_dns_servers;
};
struct boot_priority {
enum device_type type;
};
struct config {
bool autoboot_enabled;
int autoboot_timeout_sec;
struct network_config network;
struct boot_priority *boot_priorities;
int n_boot_priorities;
};
int config_init(void *ctx);
const struct config *config_get(void);
int config_set(struct config *config);
void config_set_autoboot(bool autoboot_enabled);
int config_fini(void);
/* for use by the storage backends */
void config_set_defaults(struct config *config);
#endif /* CONFIGURATION_H */
|