Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mongoose
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Ganil-acq
GANILinux
linux-service
library
mongoose
Commits
2b48e8b0
Commit
2b48e8b0
authored
3 years ago
by
Sergey Lyubka
Browse files
Options
Downloads
Patches
Plain Diff
Send suback
parent
a7afea09
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/mqtt-server/main.c
+7
-1
7 additions, 1 deletion
examples/mqtt-server/main.c
with
7 additions
and
1 deletion
examples/mqtt-server/main.c
+
7
−
1
View file @
2b48e8b0
...
@@ -42,8 +42,9 @@ static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
...
@@ -42,8 +42,9 @@ static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
case
MQTT_CMD_SUBSCRIBE
:
{
case
MQTT_CMD_SUBSCRIBE
:
{
// Client subscribes
// Client subscribes
size_t
pos
=
4
;
// Initial topic offset, where ID ends
size_t
pos
=
4
;
// Initial topic offset, where ID ends
uint8_t
qos
;
uint8_t
qos
,
resp
[
256
]
;
struct
mg_str
topic
;
struct
mg_str
topic
;
int
num_topics
=
0
;
while
((
pos
=
mg_mqtt_next_sub
(
mm
,
&
topic
,
&
qos
,
pos
))
>
0
)
{
while
((
pos
=
mg_mqtt_next_sub
(
mm
,
&
topic
,
&
qos
,
pos
))
>
0
)
{
struct
sub
*
sub
=
calloc
(
1
,
sizeof
(
*
sub
));
struct
sub
*
sub
=
calloc
(
1
,
sizeof
(
*
sub
));
sub
->
c
=
c
;
sub
->
c
=
c
;
...
@@ -52,7 +53,12 @@ static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
...
@@ -52,7 +53,12 @@ static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
LIST_ADD_HEAD
(
struct
sub
,
&
s_subs
,
sub
);
LIST_ADD_HEAD
(
struct
sub
,
&
s_subs
,
sub
);
LOG
(
LL_INFO
,
LOG
(
LL_INFO
,
(
"SUB %p [%.*s]"
,
c
->
fd
,
(
int
)
sub
->
topic
.
len
,
sub
->
topic
.
ptr
));
(
"SUB %p [%.*s]"
,
c
->
fd
,
(
int
)
sub
->
topic
.
len
,
sub
->
topic
.
ptr
));
resp
[
num_topics
++
]
=
qos
;
}
}
mg_mqtt_send_header
(
c
,
MQTT_CMD_SUBACK
,
0
,
num_topics
+
2
);
uint16_t
id
=
mg_htons
(
mm
->
id
);
mg_send
(
c
,
&
id
,
2
);
mg_send
(
c
,
resp
,
num_topics
);
break
;
break
;
}
}
case
MQTT_CMD_PUBLISH
:
{
case
MQTT_CMD_PUBLISH
:
{
...
...
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