Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
map-agent
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-agent
Merge requests
!543
Allow forcing relay in CMDU TX over ubus
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Allow forcing relay in CMDU TX over ubus
fm-relay-13699
into
devel
Overview
1
Commits
1
Pipelines
28
Changes
1
Open
Filip Matusiak
requested to merge
fm-relay-13699
into
devel
1 year ago
Overview
1
Commits
1
Pipelines
28
Changes
1
Expand
Signed-off-by: Filip Matusiak
filip.matusiak@iopsys.eu
0
0
Merge request reports
Compare
devel
version 25
e4b2557d
1 month ago
version 24
0469e3f1
4 months ago
version 23
719cc813
4 months ago
version 22
fea3c09a
4 months ago
version 21
df732508
4 months ago
version 20
1cf4ea35
6 months ago
version 19
8044c772
6 months ago
version 18
f9aa8f61
7 months ago
version 17
ea5d04cf
10 months ago
version 16
1bb66a8e
10 months ago
version 15
8b9493f5
1 year ago
version 14
a043e656
1 year ago
version 13
c2d4f158
1 year ago
version 12
08e0207e
1 year ago
version 11
a5f1c2e1
1 year ago
version 10
578654ea
1 year ago
version 9
468422ba
1 year ago
version 8
2af3872e
1 year ago
version 7
03f94b38
1 year ago
version 6
ca8b3a84
1 year ago
version 5
3f7ae5be
1 year ago
version 4
72c90421
1 year ago
version 3
5f82667a
1 year ago
version 2
9ee466b2
1 year ago
version 1
638c3516
1 year ago
devel (HEAD)
and
latest version
latest version
db238591
1 commit,
1 month ago
version 25
e4b2557d
1 commit,
1 month ago
version 24
0469e3f1
1 commit,
4 months ago
version 23
719cc813
1 commit,
4 months ago
version 22
fea3c09a
1 commit,
4 months ago
version 21
df732508
1 commit,
4 months ago
version 20
1cf4ea35
1 commit,
6 months ago
version 19
8044c772
1 commit,
6 months ago
version 18
f9aa8f61
1 commit,
7 months ago
version 17
ea5d04cf
1 commit,
10 months ago
version 16
1bb66a8e
1 commit,
10 months ago
version 15
8b9493f5
1 commit,
1 year ago
version 14
a043e656
1 commit,
1 year ago
version 13
c2d4f158
1 commit,
1 year ago
version 12
08e0207e
1 commit,
1 year ago
version 11
a5f1c2e1
1 commit,
1 year ago
version 10
578654ea
1 commit,
1 year ago
version 9
468422ba
2 commits,
1 year ago
version 8
2af3872e
1 commit,
1 year ago
version 7
03f94b38
1 commit,
1 year ago
version 6
ca8b3a84
1 commit,
1 year ago
version 5
3f7ae5be
1 commit,
1 year ago
version 4
72c90421
1 commit,
1 year ago
version 3
5f82667a
1 commit,
1 year ago
version 2
9ee466b2
1 commit,
1 year ago
version 1
638c3516
1 commit,
1 year ago
1 file
+
6
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/utils/1905_ubus.c
+
6
−
2
Options
@@ -261,12 +261,16 @@ int ieee1905_ubus_send_cmdu(struct ubus_context *ubus_ctx,
@@ -261,12 +261,16 @@ int ieee1905_ubus_send_cmdu(struct ubus_context *ubus_ctx,
blobmsg_add_u32
(
&
bb
,
"mid"
,
(
uint32_t
)
cmdu_get_mid
(
cmdu
));
blobmsg_add_u32
(
&
bb
,
"mid"
,
(
uint32_t
)
cmdu_get_mid
(
cmdu
));
blobmsg_add_u8
(
&
bb
,
"relay"
,
IS_CMDU_RELAY_MCAST
(
cmdu
->
cdata
));
if
(
vid
)
if
(
vid
)
blobmsg_add_u32
(
&
bb
,
"vid"
,
(
uint32_t
)
vid
);
blobmsg_add_u32
(
&
bb
,
"vid"
,
(
uint32_t
)
vid
);
trace
(
"|%s:%d|cmdu:0x%04x|dst:%s|mid:%u|datalen:%u|ifname:%s|vid:%u
\n
"
,
trace
(
"|%s:%d|cmdu:0x%04x|dst:%s|mid:%u|
relay:%u|
datalen:%u|ifname:%s|vid:%u
\n
"
,
__func__
,
__LINE__
,
cmdu_get_type
(
cmdu
),
dst_addr
,
__func__
,
__LINE__
,
cmdu_get_type
(
cmdu
),
dst_addr
,
cmdu_get_mid
(
cmdu
),
cmdu
->
datalen
,
cmdu
->
dev_ifname
,
vid
);
cmdu_get_mid
(
cmdu
),
IS_CMDU_RELAY_MCAST
(
cmdu
->
cdata
),
cmdu
->
datalen
,
cmdu
->
dev_ifname
,
vid
);
if
(
cmdu
->
datalen
)
{
if
(
cmdu
->
datalen
)
{
char
*
tlv_str
=
NULL
;
char
*
tlv_str
=
NULL
;
uint16_t
len
=
0
;
uint16_t
len
=
0
;
Loading