blob: 5f8cbee3873ed6c516da3d2df75a981becbe3a40 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001#ifndef _MQTT_MANAGER_H
2#define _MQTT_MANAGER_H
3
4#include "lynq_mqtt/lynq_mqtt.h"
5#include "thread_pool.h"
6#include "list.h"
7#include "common.h"
8
9
10
11typedef struct
12{
13 struct list_head list;
14 struct mqtt_set_parament data;
15}MQTT_LIST_LINK_S;
16
17
18void mqtt_list_init();
19int mqtt_param_verification(char result[][BUF_SIZE] , int line);
20int mqtt_list_locate();
21int mqtt_act_handler(thread_pool_t *pool);
22
23
24#endif
25