diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-04-10 18:09:02 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-07-10 23:41:13 +0200 |
commit | 2eab98674426d4287b9a9f4d34ab7b5ced5cfdc9 (patch) | |
tree | 04c2961c3c8f4f3c3819e3d36703f23a05d14f6e /src/plugins/tsdb.h | |
parent | 9ef2eba5e4344c1370754004a997970ca11e16ca (diff) |
Splitting code source, cleaning.
Change-Id: I97c2a409d05ceb9babb23c23fbf818316d01419b
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/plugins/tsdb.h')
-rw-r--r-- | src/plugins/tsdb.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/plugins/tsdb.h b/src/plugins/tsdb.h index 527f538..d7d6c2f 100644 --- a/src/plugins/tsdb.h +++ b/src/plugins/tsdb.h @@ -32,7 +32,14 @@ enum db_available { OPENTSDB = 4 }; -CURL *influxdb_write(const char* host, int port, json_object *metric); -CURL *influxdb_read(const char* host, int port, json_object *query); -void influxdb_cb(void *closure, int status, CURL *curl, const char *result, size_t size); +struct reader_args { + const char *host; + const char *port; +}; + +CURL *influxdb_write(const char* host, const char *port, json_object *metric); +void influxdb_write_curl_cb(void *closure, int status, CURL *curl, const char *result, size_t size); + +int influxdb_reader(void *args); + int db_ping(); |