mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-15 01:29:00 +08:00
849ec1684a
PUBLISHED_FROM=5cd78790a03580aa23dd3d2d8b825ad449083cc2
33 lines
901 B
Markdown
33 lines
901 B
Markdown
---
|
|
title: "mg_mqtt_broker()"
|
|
decl_name: "mg_mqtt_broker"
|
|
symbol_kind: "func"
|
|
signature: |
|
|
void mg_mqtt_broker(struct mg_connection *brk, int ev, void *data);
|
|
---
|
|
|
|
Processes a MQTT broker message.
|
|
|
|
The listening connection expects a pointer to an initialised
|
|
`mg_mqtt_broker` structure in the `user_data` field.
|
|
|
|
Basic usage:
|
|
|
|
```c
|
|
mg_mqtt_broker_init(&brk, NULL);
|
|
|
|
if ((nc = mg_bind(&mgr, address, mg_mqtt_broker)) == NULL) {
|
|
// fail;
|
|
}
|
|
nc->user_data = &brk;
|
|
```
|
|
|
|
New incoming connections will receive a `mg_mqtt_session` structure
|
|
in the connection `user_data`. The original `user_data` will be stored
|
|
in the `user_data` field of the session structure. This allows the user
|
|
handler to store user data before `mg_mqtt_broker` creates the session.
|
|
|
|
Since only the MG_EV_ACCEPT message is processed by the listening socket,
|
|
for most events the `user_data` will thus point to a `mg_mqtt_session`.
|
|
|