Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
map-controller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Multi-AP
map-controller
Merge requests
!262
config: use none encryption if not specified in ap section
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
config: use none encryption if not specified in ap section
default-encr
into
devel
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Jakob Olsson
requested to merge
default-encr
into
devel
1 year ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
devel
version 1
31a66af7
1 year ago
devel (base)
and
latest version
latest version
52754758
1 commit,
1 year ago
version 1
31a66af7
1 commit,
1 year ago
1 file
+
2
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/config.c
+
2
−
5
Options
@@ -1163,11 +1163,8 @@ static int cntlr_config_get_credentials(struct controller_config *c,
cred
->
mode
=
AP_WIFI_FBSS
;
}
if
(
use_default_security
)
{
cred
->
sec
|=
BIT
(
WIFI_SECURITY_WPA3PSK
);
if
(
!!
(
cred
->
multi_ap
&
2
))
cred
->
sec
|=
BIT
(
WIFI_SECURITY_WPA3PSK_T
);
}
if
(
use_default_security
)
cred
->
sec
|=
BIT
(
WIFI_SECURITY_NONE
);
if
(
tb
[
CRED_D_BSTA
])
{
struct
uci_element
*
x
;
Loading