mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-04 18:29:01 +08:00
e1dd3f06fe
PUBLISHED_FROM=c9cc54df1883aa17606de2b1ffb30f0cd687d037
87 lines
2.6 KiB
C
87 lines
2.6 KiB
C
/*
|
|
* Copyright (c) 2014 Cesanta Software Limited
|
|
* All rights reserved
|
|
* This software is dual-licensed: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation. For the terms of this
|
|
* license, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* You are free to use this software under the terms of the GNU General
|
|
* Public License, but WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See the GNU General Public License for more details.
|
|
*
|
|
* Alternatively, you can license this software under a commercial
|
|
* license, as set out in <https://www.cesanta.com/license>.
|
|
*/
|
|
|
|
#include "mongoose.h"
|
|
|
|
struct mg_mqtt_topic_expression topic_expressions[] = {
|
|
{"/stuff", 0}
|
|
};
|
|
|
|
static void ev_handler(struct mg_connection *nc, int ev, void *p) {
|
|
struct mg_mqtt_message *msg = (struct mg_mqtt_message *)p;
|
|
(void) nc;
|
|
|
|
#if 0
|
|
if (ev != MG_EV_POLL)
|
|
printf("USER HANDLER GOT %d\n", ev);
|
|
#endif
|
|
|
|
switch (ev) {
|
|
case MG_EV_CONNECT:
|
|
mg_set_protocol_mqtt(nc);
|
|
mg_send_mqtt_handshake(nc, "dummy");
|
|
break;
|
|
case MG_EV_MQTT_CONNACK:
|
|
if (msg->connack_ret_code != MG_EV_MQTT_CONNACK_ACCEPTED) {
|
|
printf("Got mqtt connection error: %d\n", msg->connack_ret_code);
|
|
exit(1);
|
|
}
|
|
printf("Subscribing to '/stuff'\n");
|
|
mg_mqtt_subscribe(nc, topic_expressions, sizeof(topic_expressions)/sizeof(*topic_expressions), 42);
|
|
break;
|
|
case MG_EV_MQTT_PUBACK:
|
|
printf("Message publishing acknowledged (msg_id: %d)\n", msg->message_id);
|
|
break;
|
|
case MG_EV_MQTT_SUBACK:
|
|
printf("Subscription acknowledged, forwarding to '/test'\n");
|
|
break;
|
|
case MG_EV_MQTT_PUBLISH:
|
|
{
|
|
#if 0
|
|
char hex[1024] = {0};
|
|
mg_hexdump(nc->recv_mbuf.buf, msg->payload.len, hex, sizeof(hex));
|
|
printf("Got incoming message %s:\n%s", msg->topic, hex);
|
|
#else
|
|
printf("Got incoming message %s: %.*s\n", msg->topic, (int)msg->payload.len, msg->payload.p);
|
|
#endif
|
|
|
|
printf("Forwarding to /test\n");
|
|
mg_mqtt_publish(nc, "/test", 65, MG_MQTT_QOS(0), msg->payload.p, msg->payload.len);
|
|
}
|
|
break;
|
|
case MG_EV_CLOSE:
|
|
printf("Connection closed\n");
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
int main(void) {
|
|
struct mg_mgr mgr;
|
|
const char *address = "localhost:1883";
|
|
|
|
mg_mgr_init(&mgr, NULL);
|
|
|
|
if (mg_connect(&mgr, address, ev_handler) == NULL) {
|
|
fprintf(stderr, "mg_connect(%s) failed\n", address);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
for(;;) {
|
|
mg_mgr_poll(&mgr, 1000);
|
|
}
|
|
}
|