]> git.ozlabs.org Git - petitboot/blobdiff - lib/pb-config/pb-config.h
discover: Handle incoming configuration messages
[petitboot] / lib / pb-config / pb-config.h
index 6a64ef116670030783e685350b82313f24add494..1cfaca3b1a28332124b00cbd50b79587701c97c7 100644 (file)
@@ -4,42 +4,17 @@
 #include <stdbool.h>
 #include <stdint.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 config {
-       bool                    autoboot_enabled;
-       struct network_config   network;
-};
+#include <types/types.h>
 
 
 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 */