mirror of
https://github.com/netdata/netdata.git
synced 2021-06-06 23:03:21 +03:00
Currently, we add the repository's top-level dir in the compiler's header search path. This means that code in every top-level directory within the repo can include headers sibling top-level directories. This patch makes header inclusion consistent when it comes to files that are included from sibling top-level directories within the repo.
14 lines
343 B
C
14 lines
343 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef ACLK_OTP_H
|
|
#define ACLK_OTP_H
|
|
|
|
#include "daemon/common.h"
|
|
|
|
#include "https_client.h"
|
|
|
|
int aclk_get_mqtt_otp(RSA *p_key, char **mqtt_id, char **mqtt_usr, char **mqtt_pass, url_t *target);
|
|
int aclk_get_env(aclk_env_t *env, const char *aclk_hostname, int aclk_port);
|
|
|
|
#endif /* ACLK_OTP_H */
|