X-Git-Url: http://pilppa.org/gitweb/?a=blobdiff_plain;f=ucimap-example.c;h=517a8a25ecf2a28befbb4aee5c4ddf405156a05f;hb=d90507ccd2101ed6788897b7d3b454dd34fa75fe;hp=3fd3765ab2c92ba0cb8d5f8b6a531aaddd1e6940;hpb=93da237dc09c31ef3c6db462de0845addf8a87f6;p=uci.git diff --git a/ucimap-example.c b/ucimap-example.c index 3fd3765..517a8a2 100644 --- a/ucimap-example.c +++ b/ucimap-example.c @@ -82,10 +82,10 @@ network_add_alias(struct uci_map *map, void *section) return 0; } -struct uci_sectmap network_interface; -struct uci_sectmap network_alias; +static struct uci_sectmap network_interface; +static struct uci_sectmap network_alias; -struct uci_optmap network_interface_options[] = { +static struct uci_optmap network_interface_options[] = { OPTMAP_OPTION(UCIMAP_STRING, struct uci_network, proto, .data.s.maxlen = 32), OPTMAP_OPTION(UCIMAP_STRING, struct uci_network, ifname), OPTMAP_OPTION(UCIMAP_STRING, struct uci_network, ipaddr), @@ -94,7 +94,7 @@ struct uci_optmap network_interface_options[] = { OPTMAP_OPTION(UCIMAP_LIST | UCIMAP_SECTION, struct uci_network, aliases, .data.sm = &network_alias), }; -struct uci_sectmap network_interface = { +static struct uci_sectmap network_interface = { .type = "interface", .options = network_interface_options, .alloc_len = sizeof(struct uci_network), @@ -103,11 +103,11 @@ struct uci_sectmap network_interface = { .n_options = ARRAY_SIZE(network_interface_options), }; -struct uci_optmap network_alias_options[] = { +static struct uci_optmap network_alias_options[] = { OPTMAP_OPTION(UCIMAP_SECTION, struct uci_alias, interface, .data.sm = &network_interface), }; -struct uci_sectmap network_alias = { +static struct uci_sectmap network_alias = { .type = "alias", .options = network_alias_options, .alloc_len = sizeof(struct uci_network), @@ -116,12 +116,12 @@ struct uci_sectmap network_alias = { .n_options = ARRAY_SIZE(network_alias_options), }; -struct uci_sectmap *network_smap[] = { +static struct uci_sectmap *network_smap[] = { &network_interface, &network_alias, }; -struct uci_map network_map = { +static struct uci_map network_map = { .sections = network_smap, .n_sections = ARRAY_SIZE(network_smap), };