netconfig: Remove no longer used static address loader

Note: there will be provided the separate helper functions for
fetching gateway and dns
This commit is contained in:
Tim Kourt 2019-07-30 18:16:07 -07:00 committed by Denis Kenzior
parent a4a7f88ace
commit 10791d02aa
1 changed files with 0 additions and 56 deletions

View File

@ -516,62 +516,6 @@ static bool netconfig_ipv4_dhcp_create(struct netconfig *netconfig,
return true;
}
static bool netconfig_ipv4_static_addressing(struct netconfig *netconfig,
struct station *station,
enum netconfig_action action)
{
const struct network *network;
const struct l_settings *settings;
struct netconfig_ifaddr ifaddr;
struct in_addr in_addr;
char *netmask;
char *gateway;
char **dns;
l_debug();
network = station_get_connected_network(station);
if (!network)
return false;
settings = network_get_settings(network);
if (!settings)
return false;
ifaddr.ip = l_settings_get_string(settings, "IPv4", "ip");
gateway = l_settings_get_string(settings, "IPv4", "gateway");
if (!ifaddr.ip || !gateway) {
l_free(ifaddr.ip);
l_free(gateway);
return false;
}
netmask = l_settings_get_string(settings, "IPv4", "netmask");
if (netmask && inet_pton(AF_INET, netmask, &in_addr) > 0)
ifaddr.prefix_len =
__builtin_popcountl(L_BE32_TO_CPU(in_addr.s_addr));
else
ifaddr.prefix_len = 24;
l_free(netmask);
ifaddr.broadcast = l_settings_get_string(settings, "IPv4", "broadcast");
dns = l_settings_get_string_list(settings, "IPv4", "dns", ' ');
ifaddr.family = AF_INET;
ifaddr.proto = RTPROT_STATIC;
netconfig_install_addresses(netconfig, &ifaddr, gateway, dns);
l_free(ifaddr.ip);
l_free(gateway);
l_free(ifaddr.broadcast);
l_strfreev(dns);
return true;
}
static void netconfig_ipv4_select_and_install(struct netconfig *netconfig)
{
struct netconfig_ifaddr *ifaddr;