2015-06-01 11:50:06 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <common/cfgparse.h>
|
2016-12-21 19:39:16 +00:00
|
|
|
#include <common/errors.h>
|
2015-06-01 13:39:50 +00:00
|
|
|
#include <proto/arg.h>
|
2015-06-01 11:50:06 +00:00
|
|
|
#include <proto/log.h>
|
2015-09-25 13:16:30 +00:00
|
|
|
#include <proto/proto_http.h>
|
2015-06-01 13:39:50 +00:00
|
|
|
#include <proto/sample.h>
|
2016-12-21 20:25:06 +00:00
|
|
|
#include <dac.h>
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
void *atlasimgptr;
|
|
|
|
char *jsonpath;
|
|
|
|
char *cookiename;
|
|
|
|
size_t cookienamelen;
|
|
|
|
da_atlas_t atlas;
|
|
|
|
da_evidence_id_t useragentid;
|
|
|
|
da_severity_t loglevel;
|
|
|
|
char separator;
|
|
|
|
unsigned char daset:1;
|
|
|
|
} global_deviceatlas = {
|
|
|
|
.loglevel = 0,
|
|
|
|
.jsonpath = 0,
|
|
|
|
.cookiename = 0,
|
|
|
|
.cookienamelen = 0,
|
|
|
|
.useragentid = 0,
|
|
|
|
.daset = 0,
|
|
|
|
.separator = '|',
|
|
|
|
};
|
2015-06-01 11:50:06 +00:00
|
|
|
|
|
|
|
static int da_json_file(char **args, int section_type, struct proxy *curpx,
|
|
|
|
struct proxy *defpx, const char *file, int line,
|
|
|
|
char **err)
|
|
|
|
{
|
|
|
|
if (*(args[1]) == 0) {
|
|
|
|
memprintf(err, "deviceatlas json file : expects a json path.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.jsonpath = strdup(args[1]);
|
2015-06-01 11:50:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int da_log_level(char **args, int section_type, struct proxy *curpx,
|
|
|
|
struct proxy *defpx, const char *file, int line,
|
|
|
|
char **err)
|
|
|
|
{
|
|
|
|
int loglevel;
|
|
|
|
if (*(args[1]) == 0) {
|
|
|
|
memprintf(err, "deviceatlas log level : expects an integer argument.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
loglevel = atol(args[1]);
|
|
|
|
if (loglevel < 0 || loglevel > 3) {
|
|
|
|
memprintf(err, "deviceatlas log level : expects a log level between 0 and 3, %s given.\n", args[1]);
|
|
|
|
} else {
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.loglevel = (da_severity_t)loglevel;
|
2015-06-01 11:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int da_property_separator(char **args, int section_type, struct proxy *curpx,
|
|
|
|
struct proxy *defpx, const char *file, int line,
|
|
|
|
char **err)
|
|
|
|
{
|
|
|
|
if (*(args[1]) == 0) {
|
|
|
|
memprintf(err, "deviceatlas property separator : expects a character argument.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.separator = *args[1];
|
2015-06-01 11:50:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-09-25 13:16:30 +00:00
|
|
|
static int da_properties_cookie(char **args, int section_type, struct proxy *curpx,
|
|
|
|
struct proxy *defpx, const char *file, int line,
|
|
|
|
char **err)
|
|
|
|
{
|
|
|
|
if (*(args[1]) == 0) {
|
|
|
|
memprintf(err, "deviceatlas cookie name : expects a string argument.\n");
|
|
|
|
return -1;
|
|
|
|
} else {
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.cookiename = strdup(args[1]);
|
2015-09-25 13:16:30 +00:00
|
|
|
}
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.cookienamelen = strlen(global_deviceatlas.cookiename);
|
2015-09-25 13:16:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-01 11:50:06 +00:00
|
|
|
static size_t da_haproxy_read(void *ctx, size_t len, char *buf)
|
|
|
|
{
|
|
|
|
return fread(buf, 1, len, ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static da_status_t da_haproxy_seek(void *ctx, off_t off)
|
|
|
|
{
|
|
|
|
return fseek(ctx, off, SEEK_SET) != -1 ? DA_OK : DA_SYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void da_haproxy_log(da_severity_t severity, da_status_t status,
|
|
|
|
const char *fmt, va_list args)
|
|
|
|
{
|
2016-12-21 20:25:06 +00:00
|
|
|
if (global_deviceatlas.loglevel && severity <= global_deviceatlas.loglevel) {
|
2015-06-01 11:50:06 +00:00
|
|
|
char logbuf[256];
|
|
|
|
vsnprintf(logbuf, sizeof(logbuf), fmt, args);
|
|
|
|
Warning("deviceatlas : %s.\n", logbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 13:16:30 +00:00
|
|
|
#define DA_COOKIENAME_DEFAULT "DAPROPS"
|
|
|
|
|
2016-12-21 19:39:16 +00:00
|
|
|
/*
|
|
|
|
* module init / deinit functions. Returns 0 if OK, or a combination of ERR_*.
|
|
|
|
*/
|
|
|
|
static int init_deviceatlas(void)
|
2015-06-01 11:50:06 +00:00
|
|
|
{
|
2016-12-21 19:39:16 +00:00
|
|
|
int err_code = 0;
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
if (global_deviceatlas.jsonpath != 0) {
|
2015-06-01 11:50:06 +00:00
|
|
|
FILE *jsonp;
|
|
|
|
da_property_decl_t extraprops[] = {{0, 0}};
|
|
|
|
size_t atlasimglen;
|
|
|
|
da_status_t status;
|
|
|
|
|
2017-10-25 15:23:02 +00:00
|
|
|
if (global.nbthread > 1) {
|
|
|
|
Alert("deviceatlas: multithreading is not supported for now.\n");
|
|
|
|
err_code |= ERR_ALERT | ERR_FATAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
jsonp = fopen(global_deviceatlas.jsonpath, "r");
|
2015-06-01 11:50:06 +00:00
|
|
|
if (jsonp == 0) {
|
|
|
|
Alert("deviceatlas : '%s' json file has invalid path or is not readable.\n",
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.jsonpath);
|
2016-12-21 19:39:16 +00:00
|
|
|
err_code |= ERR_ALERT | ERR_FATAL;
|
2015-06-01 11:50:06 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
da_init();
|
|
|
|
da_seterrorfunc(da_haproxy_log);
|
|
|
|
status = da_atlas_compile(jsonp, da_haproxy_read, da_haproxy_seek,
|
2016-12-21 20:25:06 +00:00
|
|
|
&global_deviceatlas.atlasimgptr, &atlasimglen);
|
2015-06-01 11:50:06 +00:00
|
|
|
fclose(jsonp);
|
|
|
|
if (status != DA_OK) {
|
|
|
|
Alert("deviceatlas : '%s' json file is invalid.\n",
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.jsonpath);
|
2016-12-21 19:39:16 +00:00
|
|
|
err_code |= ERR_ALERT | ERR_FATAL;
|
2015-06-01 11:50:06 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
status = da_atlas_open(&global_deviceatlas.atlas, extraprops,
|
|
|
|
global_deviceatlas.atlasimgptr, atlasimglen);
|
2015-06-01 11:50:06 +00:00
|
|
|
|
|
|
|
if (status != DA_OK) {
|
|
|
|
Alert("deviceatlas : data could not be compiled.\n");
|
2016-12-21 19:39:16 +00:00
|
|
|
err_code |= ERR_ALERT | ERR_FATAL;
|
2015-06-01 11:50:06 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
if (global_deviceatlas.cookiename == 0) {
|
|
|
|
global_deviceatlas.cookiename = strdup(DA_COOKIENAME_DEFAULT);
|
|
|
|
global_deviceatlas.cookienamelen = strlen(global_deviceatlas.cookiename);
|
2015-09-25 13:16:30 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.useragentid = da_atlas_header_evidence_id(&global_deviceatlas.atlas,
|
2015-06-01 11:50:06 +00:00
|
|
|
"user-agent");
|
2016-12-21 20:25:06 +00:00
|
|
|
global_deviceatlas.daset = 1;
|
2015-06-01 11:50:06 +00:00
|
|
|
|
|
|
|
fprintf(stdout, "Deviceatlas module loaded.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2016-12-21 19:39:16 +00:00
|
|
|
return err_code;
|
2015-06-01 11:50:06 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 20:03:49 +00:00
|
|
|
static void deinit_deviceatlas(void)
|
2015-06-01 11:50:06 +00:00
|
|
|
{
|
2016-12-21 20:25:06 +00:00
|
|
|
if (global_deviceatlas.jsonpath != 0) {
|
|
|
|
free(global_deviceatlas.jsonpath);
|
2015-06-01 11:50:06 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
if (global_deviceatlas.daset == 1) {
|
|
|
|
free(global_deviceatlas.cookiename);
|
|
|
|
da_atlas_close(&global_deviceatlas.atlas);
|
|
|
|
free(global_deviceatlas.atlasimgptr);
|
2015-06-01 11:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
da_fini();
|
|
|
|
}
|
|
|
|
|
2015-09-25 13:16:30 +00:00
|
|
|
static int da_haproxy(const struct arg *args, struct sample *smp, da_deviceinfo_t *devinfo)
|
2015-06-01 11:50:06 +00:00
|
|
|
{
|
|
|
|
struct chunk *tmp;
|
|
|
|
da_propid_t prop, *pprop;
|
|
|
|
da_status_t status;
|
2015-09-25 13:16:30 +00:00
|
|
|
da_type_t proptype;
|
|
|
|
const char *propname;
|
2015-06-01 11:50:06 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
tmp = get_trash_chunk();
|
|
|
|
chunk_reset(tmp);
|
|
|
|
|
|
|
|
propname = (const char *)args[0].data.str.str;
|
|
|
|
i = 0;
|
|
|
|
|
|
|
|
for (; propname != 0; i ++, propname = (const char *)args[i].data.str.str) {
|
2016-12-21 20:25:06 +00:00
|
|
|
status = da_atlas_getpropid(&global_deviceatlas.atlas,
|
2015-06-01 11:50:06 +00:00
|
|
|
propname, &prop);
|
|
|
|
if (status != DA_OK) {
|
2016-12-21 20:25:06 +00:00
|
|
|
chunk_appendf(tmp, "%c", global_deviceatlas.separator);
|
2015-06-01 11:50:06 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
pprop = ∝
|
2016-12-21 20:25:06 +00:00
|
|
|
da_atlas_getproptype(&global_deviceatlas.atlas, *pprop, &proptype);
|
2015-06-01 11:50:06 +00:00
|
|
|
|
|
|
|
switch (proptype) {
|
|
|
|
case DA_TYPE_BOOLEAN: {
|
|
|
|
bool val;
|
2015-09-25 13:16:30 +00:00
|
|
|
status = da_getpropboolean(devinfo, *pprop, &val);
|
2015-06-01 11:50:06 +00:00
|
|
|
if (status == DA_OK) {
|
|
|
|
chunk_appendf(tmp, "%d", val);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DA_TYPE_INTEGER:
|
|
|
|
case DA_TYPE_NUMBER: {
|
|
|
|
long val;
|
2015-09-25 13:16:30 +00:00
|
|
|
status = da_getpropinteger(devinfo, *pprop, &val);
|
2015-06-01 11:50:06 +00:00
|
|
|
if (status == DA_OK) {
|
|
|
|
chunk_appendf(tmp, "%ld", val);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DA_TYPE_STRING: {
|
|
|
|
const char *val;
|
2015-09-25 13:16:30 +00:00
|
|
|
status = da_getpropstring(devinfo, *pprop, &val);
|
2015-06-01 11:50:06 +00:00
|
|
|
if (status == DA_OK) {
|
|
|
|
chunk_appendf(tmp, "%s", val);
|
|
|
|
}
|
|
|
|
break;
|
2015-09-25 13:16:30 +00:00
|
|
|
}
|
2015-06-01 11:50:06 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
chunk_appendf(tmp, "%c", global_deviceatlas.separator);
|
2015-06-01 11:50:06 +00:00
|
|
|
}
|
|
|
|
|
2015-09-25 13:16:30 +00:00
|
|
|
da_close(devinfo);
|
2015-06-01 11:50:06 +00:00
|
|
|
|
|
|
|
if (tmp->len) {
|
|
|
|
--tmp->len;
|
|
|
|
tmp->str[tmp->len] = 0;
|
|
|
|
}
|
|
|
|
|
2015-08-19 07:07:19 +00:00
|
|
|
smp->data.u.str.str = tmp->str;
|
2015-09-25 13:16:30 +00:00
|
|
|
smp->data.u.str.len = tmp->len;
|
2015-06-01 11:50:06 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-25 13:16:30 +00:00
|
|
|
static int da_haproxy_conv(const struct arg *args, struct sample *smp, void *private)
|
|
|
|
{
|
|
|
|
da_deviceinfo_t devinfo;
|
|
|
|
da_status_t status;
|
|
|
|
const char *useragent;
|
|
|
|
char useragentbuf[1024] = { 0 };
|
|
|
|
int i;
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
if (global_deviceatlas.daset == 0 || smp->data.u.str.len == 0) {
|
2015-09-25 13:16:30 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = smp->data.u.str.len > sizeof(useragentbuf) ? sizeof(useragentbuf) : smp->data.u.str.len;
|
|
|
|
memcpy(useragentbuf, smp->data.u.str.str, i - 1);
|
|
|
|
useragentbuf[i - 1] = 0;
|
|
|
|
|
|
|
|
useragent = (const char *)useragentbuf;
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
status = da_search(&global_deviceatlas.atlas, &devinfo,
|
|
|
|
global_deviceatlas.useragentid, useragent, 0);
|
2015-09-25 13:16:30 +00:00
|
|
|
|
|
|
|
return status != DA_OK ? 0 : da_haproxy(args, smp, &devinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DA_MAX_HEADERS 24
|
|
|
|
|
|
|
|
static int da_haproxy_fetch(const struct arg *args, struct sample *smp, const char *kw, void *private)
|
|
|
|
{
|
|
|
|
struct hdr_idx *hidx;
|
|
|
|
struct hdr_ctx hctx;
|
|
|
|
const struct http_msg *hmsg;
|
|
|
|
da_evidence_t ev[DA_MAX_HEADERS];
|
|
|
|
da_deviceinfo_t devinfo;
|
|
|
|
da_status_t status;
|
|
|
|
char vbuf[DA_MAX_HEADERS][1024] = {{ 0 }};
|
|
|
|
int i, nbh = 0;
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
if (global_deviceatlas.daset == 0) {
|
2015-09-25 13:16:30 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_HTTP_MESSAGE_FIRST();
|
|
|
|
smp->data.type = SMP_T_STR;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Here we go through the whole list of headers from start
|
|
|
|
* they will be filtered via the DeviceAtlas API itself
|
|
|
|
*/
|
|
|
|
hctx.idx = 0;
|
|
|
|
hidx = &smp->strm->txn->hdr_idx;
|
|
|
|
hmsg = &smp->strm->txn->req;
|
|
|
|
|
|
|
|
while (http_find_next_header(hmsg->chn->buf->p, hidx, &hctx) == 1 &&
|
|
|
|
nbh < DA_MAX_HEADERS) {
|
|
|
|
char *pval;
|
|
|
|
size_t vlen;
|
|
|
|
da_evidence_id_t evid = -1;
|
|
|
|
char hbuf[24] = { 0 };
|
|
|
|
|
|
|
|
/* The HTTP headers used by the DeviceAtlas API are not longer */
|
2017-11-17 08:47:25 +00:00
|
|
|
if (hctx.del >= sizeof(hbuf) || hctx.del <= 0 || hctx.vlen <= 0) {
|
2015-09-25 13:16:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
vlen = hctx.vlen;
|
|
|
|
memcpy(hbuf, hctx.line, hctx.del);
|
|
|
|
hbuf[hctx.del] = 0;
|
|
|
|
pval = (hctx.line + hctx.val);
|
|
|
|
|
|
|
|
if (strcmp(hbuf, "Accept-Language") == 0) {
|
2016-12-21 20:25:06 +00:00
|
|
|
evid = da_atlas_accept_language_evidence_id(&global_deviceatlas.
|
2015-09-25 13:16:30 +00:00
|
|
|
atlas);
|
|
|
|
} else if (strcmp(hbuf, "Cookie") == 0) {
|
|
|
|
char *p, *eval;
|
|
|
|
int pl;
|
|
|
|
|
|
|
|
eval = pval + hctx.vlen;
|
|
|
|
/**
|
|
|
|
* The cookie value, if it exists, is located between the current header's
|
|
|
|
* value position and the next one
|
|
|
|
*/
|
2016-12-21 20:25:06 +00:00
|
|
|
if (extract_cookie_value(pval, eval, global_deviceatlas.cookiename,
|
|
|
|
global_deviceatlas.cookienamelen, 1, &p, &pl) == NULL) {
|
2015-09-25 13:16:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
vlen = (size_t)pl;
|
|
|
|
pval = p;
|
2016-12-21 20:25:06 +00:00
|
|
|
evid = da_atlas_clientprop_evidence_id(&global_deviceatlas.atlas);
|
2015-09-25 13:16:30 +00:00
|
|
|
} else {
|
2016-12-21 20:25:06 +00:00
|
|
|
evid = da_atlas_header_evidence_id(&global_deviceatlas.atlas,
|
2015-09-25 13:16:30 +00:00
|
|
|
hbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (evid == -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = vlen > sizeof(vbuf[nbh]) ? sizeof(vbuf[nbh]) : vlen;
|
|
|
|
memcpy(vbuf[nbh], pval, i - 1);
|
|
|
|
vbuf[nbh][i - 1] = 0;
|
|
|
|
ev[nbh].key = evid;
|
|
|
|
ev[nbh].value = vbuf[nbh];
|
|
|
|
ev[nbh].value[vlen] = 0;
|
|
|
|
++ nbh;
|
|
|
|
}
|
|
|
|
|
2016-12-21 20:25:06 +00:00
|
|
|
status = da_searchv(&global_deviceatlas.atlas, &devinfo,
|
2015-09-25 13:16:30 +00:00
|
|
|
ev, nbh);
|
|
|
|
|
|
|
|
return status != DA_OK ? 0 : da_haproxy(args, smp, &devinfo);
|
|
|
|
}
|
|
|
|
|
2015-06-01 13:42:29 +00:00
|
|
|
static struct cfg_kw_list dacfg_kws = {{ }, {
|
|
|
|
{ CFG_GLOBAL, "deviceatlas-json-file", da_json_file },
|
|
|
|
{ CFG_GLOBAL, "deviceatlas-log-level", da_log_level },
|
|
|
|
{ CFG_GLOBAL, "deviceatlas-property-separator", da_property_separator },
|
2015-09-25 13:16:30 +00:00
|
|
|
{ CFG_GLOBAL, "deviceatlas-properties-cookie", da_properties_cookie },
|
2015-06-01 13:42:29 +00:00
|
|
|
{ 0, NULL, NULL },
|
|
|
|
}};
|
|
|
|
|
2015-09-25 13:16:30 +00:00
|
|
|
/* Note: must not be declared <const> as its list will be overwritten */
|
|
|
|
static struct sample_fetch_kw_list fetch_kws = {ILH, {
|
2016-03-16 10:09:55 +00:00
|
|
|
{ "da-csv-fetch", da_haproxy_fetch, ARG12(1,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
|
2015-09-25 13:16:30 +00:00
|
|
|
{ NULL, NULL, 0, 0, 0 },
|
|
|
|
}};
|
|
|
|
|
2015-06-01 13:39:50 +00:00
|
|
|
/* Note: must not be declared <const> as its list will be overwritten */
|
|
|
|
static struct sample_conv_kw_list conv_kws = {ILH, {
|
2016-03-16 10:09:55 +00:00
|
|
|
{ "da-csv-conv", da_haproxy_conv, ARG12(1,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR,STR), NULL, SMP_T_STR, SMP_T_STR },
|
2015-06-01 13:39:50 +00:00
|
|
|
{ NULL, NULL, 0, 0, 0 },
|
|
|
|
}};
|
|
|
|
|
|
|
|
__attribute__((constructor))
|
|
|
|
static void __da_init(void)
|
|
|
|
{
|
|
|
|
/* register sample fetch and format conversion keywords */
|
2015-09-25 13:16:30 +00:00
|
|
|
sample_register_fetches(&fetch_kws);
|
2015-06-01 13:39:50 +00:00
|
|
|
sample_register_convs(&conv_kws);
|
2015-06-01 13:42:29 +00:00
|
|
|
cfg_register_keywords(&dacfg_kws);
|
2016-12-21 17:50:22 +00:00
|
|
|
hap_register_build_opts("Built with DeviceAtlas support.", 0);
|
2016-12-21 19:39:16 +00:00
|
|
|
hap_register_post_check(init_deviceatlas);
|
2016-12-21 20:03:49 +00:00
|
|
|
hap_register_post_deinit(deinit_deviceatlas);
|
2015-06-01 13:39:50 +00:00
|
|
|
}
|