Skip to content
GitLab
Explore
Sign in
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
!23
Backhaul STA Radio Capabilities (map-controller)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Backhaul STA Radio Capabilities (map-controller)
lejla-bk-caps
into
devel
Overview
0
Commits
2
Pipelines
2
Changes
3
Merged
Lejla Murselovic
requested to merge
lejla-bk-caps
into
devel
4 years ago
Overview
0
Commits
2
Pipelines
2
Changes
3
Expand
Implementing the Backhaul STA Radio Capabilities cmdu from Section 9.3 of easymesh R2.
0
0
Merge request reports
Compare
devel
version 1
0c1b323b
4 years ago
devel (base)
and
latest version
latest version
2ec18e49
2 commits,
4 years ago
version 1
0c1b323b
1 commit,
4 years ago
3 files
+
87
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/core/cntlr_cmdu_generator.c
+
23
−
0
Options
@@ -402,6 +402,29 @@ fail_cmdu:
@@ -402,6 +402,29 @@ fail_cmdu:
return
NULL
;
return
NULL
;
}
}
struct
cmdu_cstruct
*
cntlr_gen_bk_caps_query
(
struct
controller
*
c
,
uint8_t
*
origin
,
char
*
intf_name
)
{
struct
cmdu_cstruct
*
cmdu
;
cmdu
=
calloc
(
1
,
sizeof
(
struct
cmdu_cstruct
));
if
(
!
cmdu
)
{
fprintf
(
stderr
,
"failed to malloc cmdu
\n
"
);
return
NULL
;
}
cmdu_defaults
(
c
,
cmdu
,
origin
,
intf_name
,
CMDU_BACKHAUL_STA_CAPABILITY_QUERY
);
cmdu
->
num_tlvs
=
0
;
return
cmdu
;
fail_cmdu:
map_free_cmdu
(
cmdu
);
return
NULL
;
}
struct
cmdu_cstruct
*
cntlr_gen_ap_autoconfig_search
(
struct
controller
*
c
,
struct
cmdu_cstruct
*
cntlr_gen_ap_autoconfig_search
(
struct
controller
*
c
,
char
*
intf_name
,
uint8_t
profile
,
uint8_t
band
)
char
*
intf_name
,
uint8_t
profile
,
uint8_t
band
)
{
{
Loading