Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
celllframe-node
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Code
Merge requests
15
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
celllframe-node
Commits
5fae577b
Commit
5fae577b
authored
4 years ago
by
Roman Khlopkov
🔜
Committed by
dmitriy.gerasimov
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
features-3996
parent
679bc3c8
No related branches found
Branches containing commit
No related tags found
1 merge request
!272
Feature 5173
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
cellframe-sdk
+1
-1
1 addition, 1 deletion
cellframe-sdk
dist/share/configs/cellframe-node.cfg.tpl
+1
-0
1 addition, 0 deletions
dist/share/configs/cellframe-node.cfg.tpl
sources/main.c
+1
-1
1 addition, 1 deletion
sources/main.c
with
4 additions
and
3 deletions
CMakeLists.txt
+
1
−
1
View file @
5fae577b
...
@@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11)
...
@@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11)
SET
(
CPACK_PACKAGE_NAME
"
${
PROJECT_NAME
}
"
)
SET
(
CPACK_PACKAGE_NAME
"
${
PROJECT_NAME
}
"
)
SET
(
CPACK_PACKAGE_VERSION_MAJOR 4
)
SET
(
CPACK_PACKAGE_VERSION_MAJOR 4
)
SET
(
CPACK_PACKAGE_VERSION_MINOR 2
)
SET
(
CPACK_PACKAGE_VERSION_MINOR 2
)
SET
(
CPACK_PACKAGE_VERSION_PATCH
0
)
SET
(
CPACK_PACKAGE_VERSION_PATCH
1
)
# init CellFrame SDK
# init CellFrame SDK
add_definitions
(
"-DDAP_VERSION=
\"
${
CPACK_PACKAGE_VERSION_MAJOR
}
\"
"
)
add_definitions
(
"-DDAP_VERSION=
\"
${
CPACK_PACKAGE_VERSION_MAJOR
}
\"
"
)
...
...
This diff is collapsed.
Click to expand it.
cellframe-sdk
@
c5c9a567
Compare
3e8cc0fd
...
c5c9a567
Subproject commit
3e8cc0fdd53f5b0a5bdcd0337aa9cd9ea30e5cf6
Subproject commit
c5c9a56750470e2db62a20602afde85c00195d9b
This diff is collapsed.
Click to expand it.
dist/share/configs/cellframe-node.cfg.tpl
+
1
−
0
View file @
5fae577b
...
@@ -27,6 +27,7 @@ bugreport_url_enabled=false
...
@@ -27,6 +27,7 @@ bugreport_url_enabled=false
[dns_server]
[dns_server]
enabled=false
enabled=false
bootstrap_balancer=false
bootstrap_balancer=false
bootstrap_balancer_port=53
[srv]
[srv]
order_signed_only=false
order_signed_only=false
...
...
This diff is collapsed.
Click to expand it.
sources/main.c
+
1
−
1
View file @
5fae577b
...
@@ -446,7 +446,7 @@ int main( int argc, const char **argv )
...
@@ -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
);
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
);
log_it
(
L_DEBUG
,
"config dns_server->bootstrap_balancer =
\"
%u
\"
"
,
bootstrap_balancer_enabled
);
if
(
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
)
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment