summaryrefslogtreecommitdiffstats
path: root/lib/pb-config/pb-config.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pb-config/pb-config.h')
-rw-r--r--lib/pb-config/pb-config.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/pb-config/pb-config.h b/lib/pb-config/pb-config.h
index c377087..748b409 100644
--- a/lib/pb-config/pb-config.h
+++ b/lib/pb-config/pb-config.h
@@ -6,7 +6,7 @@
#define HWADDR_SIZE 6
-struct network_config {
+struct interface_config {
uint8_t hwaddr[HWADDR_SIZE];
bool ignore;
enum {
@@ -24,10 +24,14 @@ struct network_config {
};
};
+struct network_config {
+ struct interface_config **interfaces;
+ int n_interfaces;
+};
+
struct config {
bool autoboot_enabled;
- struct network_config **network_configs;
- int n_network_configs;
+ struct network_config network;
};
OpenPOWER on IntegriCloud