mosquitto_broker: MQTT broker/client sample server. also scrapped.
Signed-off-by: HeshamTB <hishaminv@gmail.com>
This commit is contained in:
parent
e633be8396
commit
7d41fcf200
11
mosquitto_broker/Makefile
Normal file
11
mosquitto_broker/Makefile
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
CC=gcc
|
||||||
|
CFLAGS= -lmosquitto
|
||||||
|
|
||||||
|
all: mqtt-broker.o
|
||||||
|
$(CC) $(CFLAGS) -o mqtt-broker mqtt-broker.o
|
||||||
|
|
||||||
|
mqtt-broker.o:
|
||||||
|
$(CC) $(CFLAGS) -c mqtt-broker.c
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm mqtt-broker.o mqtt-broker
|
74
mosquitto_broker/mqtt-broker.c
Normal file
74
mosquitto_broker/mqtt-broker.c
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <mosquitto.h>
|
||||||
|
|
||||||
|
|
||||||
|
void my_message_callback(struct mosquitto *mosq, void *userdata, const struct mosquitto_message *message)
|
||||||
|
{
|
||||||
|
if(message->payloadlen){
|
||||||
|
printf("%s %s\n", message->topic, message->payload);
|
||||||
|
}else{
|
||||||
|
printf("%s (null)\n", message->topic);
|
||||||
|
}
|
||||||
|
fflush(stdout);
|
||||||
|
}
|
||||||
|
|
||||||
|
void my_connect_callback(struct mosquitto *mosq, void *userdata, int result)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
if(!result){
|
||||||
|
/* Subscribe to broker information topics on successful connect. */
|
||||||
|
//mosquitto_subscribe(mosq, NULL, "$SYS/#", 2);
|
||||||
|
mosquitto_subscribe(mosq, NULL, "testtopic", 2);
|
||||||
|
}else{
|
||||||
|
fprintf(stderr, "Connect failed\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void my_subscribe_callback(struct mosquitto *mosq, void *userdata, int mid, int qos_count, const int *granted_qos)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
printf("Subscribed (mid: %d): %d", mid, granted_qos[0]);
|
||||||
|
for(i=1; i<qos_count; i++){
|
||||||
|
printf(", %d", granted_qos[i]);
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
void my_log_callback(struct mosquitto *mosq, void *userdata, int level, const char *str)
|
||||||
|
{
|
||||||
|
/* Pring all log messages regardless of level. */
|
||||||
|
printf("%s\n", str);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
char *host = "localhost";
|
||||||
|
int port = 1883;
|
||||||
|
int keepalive = 60;
|
||||||
|
bool clean_session = true;
|
||||||
|
struct mosquitto *mosq = NULL;
|
||||||
|
|
||||||
|
mosquitto_lib_init();
|
||||||
|
mosq = mosquitto_new(NULL, clean_session, NULL);
|
||||||
|
if(!mosq){
|
||||||
|
fprintf(stderr, "Error: Out of memory.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
mosquitto_log_callback_set(mosq, my_log_callback);
|
||||||
|
mosquitto_connect_callback_set(mosq, my_connect_callback);
|
||||||
|
mosquitto_message_callback_set(mosq, my_message_callback);
|
||||||
|
mosquitto_subscribe_callback_set(mosq, my_subscribe_callback);
|
||||||
|
|
||||||
|
if(mosquitto_connect(mosq, host, port, keepalive)){
|
||||||
|
fprintf(stderr, "Unable to connect.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
mosquitto_loop_forever(mosq, -1, 1);
|
||||||
|
|
||||||
|
mosquitto_destroy(mosq);
|
||||||
|
mosquitto_lib_cleanup();
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user