| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_API_V3_CALLS_H |
| 4 | #define NETDATA_API_V3_CALLS_H |
| 5 | |
| 6 | #include "../web_api_v3.h" |
| 7 | |
| 8 | int api_v2_contexts_internal(RRDHOST *host, struct web_client *w, char *url, CONTEXTS_V2_MODE mode, CONTEXTS_OPTIONS options); |
| 9 | #define api_v3_contexts_internal(host, w, url, mode, options) api_v2_contexts_internal(host, w, url, mode, options) |
| 10 | |
| 11 | int api_v3_settings(RRDHOST *host, struct web_client *w, char *url); |
| 12 | int api_v3_me(RRDHOST *host, struct web_client *w, char *url); |
| 13 | int api_v3_stream_info(RRDHOST *host __maybe_unused, struct web_client *w, char *url); |
| 14 | int api_v3_stream_path(RRDHOST *host __maybe_unused, struct web_client *w, char *url); |
| 15 | |
| 16 | #endif //NETDATA_API_V3_CALLS_H |