diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-07-09 00:17:39 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-08-01 17:46:22 +0200 |
commit | 903b0e9a002e0839943c5d734f3728114272ebc1 (patch) | |
tree | 428ed08e21cf0469bccc36c7b98204112b2c0124 /src/plugins/influxdb.h | |
parent | 6c36102bf3964808f6f2db4161f79cf458880a5a (diff) |
Rework how to build dest DB URL
Change-Id: I5a351d6e2f5750dcb39bd9feff71abe930c052bb
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'src/plugins/influxdb.h')
-rw-r--r-- | src/plugins/influxdb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/influxdb.h b/src/plugins/influxdb.h index 781ab29..33eb0a2 100644 --- a/src/plugins/influxdb.h +++ b/src/plugins/influxdb.h @@ -127,6 +127,8 @@ static inline void concatenate_str(char* dest, const char* source, const char* s strncat(dest, "\"", 1); } -size_t make_url(char* url, size_t l_url, const char* host, const char* port, const char* endpoint); +extern size_t make_url_db(char* url, size_t l_url, const char* host, const char* port, const char* endpoint, const char *db); +extern size_t make_url(char* url, size_t l_url, const char* host, const char* port, const char* endpoint); +extern char* get_url(const char* host, const char* port, const char* endpoint); #endif |