mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-29 13:59:24 +01:00
ap: make APRanges optional
If EnableNetworkConfiguration was enabled ap.c required that APRanges also be set. This prevents IWD from starting which effects a perfectly valid station configuration. Instead if APRanges is not provided IWD still allows ap_init to pass but DHCP just will not be enabled.
This commit is contained in:
parent
c098db1837
commit
acb31477c1
9
src/ap.c
9
src/ap.c
@ -3028,9 +3028,14 @@ static int ap_init(void)
|
|||||||
|
|
||||||
ip_prefix = l_settings_get_string(settings, "General",
|
ip_prefix = l_settings_get_string(settings, "General",
|
||||||
"APRanges");
|
"APRanges");
|
||||||
|
/*
|
||||||
|
* In this case its assumed the user only cares about station
|
||||||
|
* netconfig so we let ap_init pass but DHCP will not be
|
||||||
|
* enabled.
|
||||||
|
*/
|
||||||
if (!ip_prefix) {
|
if (!ip_prefix) {
|
||||||
l_error("[General].APRanges must be set for DHCP");
|
l_warn("[General].APRanges must be set for DHCP");
|
||||||
return -EINVAL;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ip_pool_create(ip_prefix))
|
if (!ip_pool_create(ip_prefix))
|
||||||
|
Loading…
Reference in New Issue
Block a user