blob: 07859761d3685d442f9b68d8dc1534e779f4b45a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef STATS_CARBON
#define STATS_CARBON 1
struct stats_send_ctx;
int
stats_carbon_send(const char *endpoint, const char *data,
void (*callback)(void *), void *cb_ctx,
struct stats_send_ctx **ctx_r);
void
stats_carbon_destroy(struct stats_send_ctx **ctx);
#endif
|