some more mqtt stuff

This commit is contained in:
2020-06-17 16:03:32 +02:00
parent 034ad78ceb
commit e1a8e7d63e
6 changed files with 179 additions and 74 deletions

14
handleType.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef _HANDLETYPE_H_
#define _HANDLETYPE_H_
#include <libconfig.h>
#include "ringbuffer.h"
typedef struct {
config_t *config;
ringbuffer_t *ringbuffer;
void* context;
} commonThreadHandle_t;
#endif // _HANDLETYPE_H_