mirror of
https://github.com/owntracks/recorder.git
synced 2024-11-16 02:18:27 -07:00
30 lines
697 B
C
30 lines
697 B
C
#ifndef UDATA_H_INCLUDED
|
|
# define UDATA_H_INCLUDED
|
|
|
|
#include "utarray.h"
|
|
|
|
#ifdef HAVE_HTTP
|
|
# include "mongoose.h"
|
|
#endif
|
|
#ifdef HAVE_LMDB
|
|
# include "gcache.h"
|
|
#endif
|
|
|
|
|
|
struct udata {
|
|
UT_array *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 */
|
|
#ifdef HAVE_LMDB
|
|
struct gcache *gc;
|
|
#endif
|
|
#ifdef HAVE_HTTP
|
|
struct mg_server *mgserver; /* Mongoose */
|
|
#endif
|
|
};
|
|
|
|
#endif
|