david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Added "hostname" and "ip" as sample settings

This commit is contained in:
Michael Brown 2006-08-11 18:29:20 +00:00
parent fe774fe356
commit dd9399f527
1 changed files with 13 additions and 0 deletions

View File

@ -251,3 +251,16 @@ struct config_setting_type config_setting_type_ipv4 __config_setting_type = {
.set = set_ipv4,
};
/** Some basic setting definitions */
struct config_setting basic_config_settings[] __config_setting = {
{
.name = "hostname",
.tag = DHCP_HOST_NAME,
.type = &config_setting_type_string,
},
{
.name = "ip",
.tag = DHCP_EB_YIADDR,
.type = &config_setting_type_ipv4,
},
};