recorder/udata.h
2015-10-01 12:06:00 +02:00

39 lines
982 B
C

#ifndef UDATA_H_INCLUDED
# define UDATA_H_INCLUDED
#include "json.h"
#ifdef WITH_HTTP
# include "mongoose.h"
#endif
#ifdef WITH_LMDB
# include "gcache.h"
#endif
struct udata {
JsonNode *topics; /* Array of topics to subscribe to */
int ignoreretained; /* True if retained messages should be ignored */
char *pubprefix; /* If not NULL (default), republish modified payload to <pubprefix>/topic */
int skipdemo; /* True if _demo users are to be skipped */
int revgeo; /* True (default) if we should do reverse Geo lookups */
int qos; /* Subscribe QoS */
int verbose; /* TRUE if print verbose messages to stdout */
#ifdef WITH_LMDB
struct gcache *gc;
struct gcache *t2t; /* topic to tid */
#endif
#ifdef WITH_HTTP
struct mg_server *mgserver; /* Mongoose */
#endif
#ifdef WITH_LUA
# ifdef WITH_LMDB
struct luadata *luadata; /* Lua stuff */
struct gcache *luadb; /* lmdb named database 'luadb' */
# endif
#endif
char *label; /* Server label */
};
#endif