diff --git a/CMakeLists.txt b/CMakeLists.txt index 1bd764b22422411255d2efa7b28a8ef601015b45..6257129c25e6503a6804eb168acd2d0b688329a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11) SET( CPACK_PACKAGE_NAME "${PROJECT_NAME}") SET( CPACK_PACKAGE_VERSION_MAJOR 4) SET( CPACK_PACKAGE_VERSION_MINOR 1) -SET( CPACK_PACKAGE_VERSION_PATCH 15) +SET( CPACK_PACKAGE_VERSION_PATCH 16) # init CellFrame SDK add_definitions("-DDAP_VERSION=\"${CPACK_PACKAGE_VERSION_MAJOR}\"") diff --git a/cellframe-sdk b/cellframe-sdk index 9146535c0a956a19561ee9e8cff1d11a2c1b12f8..8add618e197eb4963c867cfd91c8fcec1580b9db 160000 --- a/cellframe-sdk +++ b/cellframe-sdk @@ -1 +1 @@ -Subproject commit 9146535c0a956a19561ee9e8cff1d11a2c1b12f8 +Subproject commit 8add618e197eb4963c867cfd91c8fcec1580b9db diff --git a/dist/share/configs/cellframe-node.cfg.tpl b/dist/share/configs/cellframe-node.cfg.tpl index 7ff121c7ba6c2b30f2a442e70dbad29aeeec237a..90bba29280e2dd933895e874a523aaf32614cc70 100755 --- a/dist/share/configs/cellframe-node.cfg.tpl +++ b/dist/share/configs/cellframe-node.cfg.tpl @@ -27,6 +27,7 @@ bugreport_url_enabled=false [dns_server] enabled=false bootstrap_balancer=false +bootstrap_balancer_port=53 [srv] order_signed_only=false diff --git a/sources/main.c b/sources/main.c index bfb9570f427ad2f2700a2036e84fa310c6444a50..95e58c793a55a9fc6efd04be7c584630823b3959 100755 --- a/sources/main.c +++ b/sources/main.c @@ -446,7 +446,7 @@ int main( int argc, const char **argv ) bool bootstrap_balancer_enabled = dap_config_get_item_bool_default(g_config, "dns_server", "bootstrap_balancer", false); log_it(L_DEBUG, "config dns_server->bootstrap_balancer = \"%u\" ", bootstrap_balancer_enabled); if (bootstrap_balancer_enabled) { - dap_dns_server_start(l_events); + dap_dns_server_start(l_events, dap_config_get_item_uint16_default(g_config, "dns_server", "bootstrap_balancer_port", DNS_LISTEN_PORT)); } }