22 lines
780 B
C
22 lines
780 B
C
|
#ifndef __KIT_MQTT_SUB_H_
|
||
|
#define __KIT_MQTT_SUB_H_
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include "libpaho-mqtt/include/MQTTAsync.h"
|
||
|
|
||
|
void closeInterface1();
|
||
|
void openInterface1();
|
||
|
void connlost(void *context, char *cause);
|
||
|
int msgarrvd(void *context, char *topicName, int topicLen, MQTTAsync_message *message);
|
||
|
void onDisconnectFailure(void* context, MQTTAsync_failureData* response);
|
||
|
void onDisconnect1(void* context, MQTTAsync_successData* response);
|
||
|
void onSubscribe(void* context, MQTTAsync_successData* response);
|
||
|
void onSubscribeFailure1(void* context, MQTTAsync_failureData* response);
|
||
|
void onConnectFailure1(void* context, MQTTAsync_failureData* response);
|
||
|
void onConnect1(void* context, MQTTAsync_successData* response);
|
||
|
int subClient();
|
||
|
|
||
|
# endif
|