summaryrefslogtreecommitdiffstats
path: root/aclk/https_client.c
AgeCommit message (Collapse)Author
2022-12-21Support HTTP proxy Basic auth (#13762)Timotej S
2022-02-21Fix compilation warnings on macOS (#12082)Vladimir Kobal
2021-11-16Fix typos (#11782)Dimitris Apostolou
Co-authored-by: ilyam8 <ilya@netdata.cloud>
2021-10-22Fix warnings from -Wformat-truncation=2 (#11676)Emmanuel Vasilakis
* mark host as UNUSED * use snprintfz instead of snprintf. removes warning: %s directive output between 0 and 4096 bytes may exceed minimum required size of 4095 * increase length to 22 to include full int length. stops warning %d directive output may be truncated writing between 1 and 11 bytes into a region of size 5 * increase buffers to stop warning %0.1f directive output may be truncated writing between 3 and 312 bytes into a region of size 100 * use sprintfz
2021-10-22fix bug in http client (#11650)Timotej S
- in some cases error message "timed out" would be shown while there are still data in SSL buffers
2021-10-04fix https client (#11608)Timotej S
- do full chain check in env
2021-05-24Remove unecessary relative paths when including headers. (#11124)vkalintiris
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.
2021-04-19implements ACLK env endpoint (#10833)Timotej S
implements /env endpoint call and parsing of the response
2021-04-19implements new https client for ACLK (#10805)Timotej S
New HTTPS client for Agent/Cloud New Arch
2021-03-19move https_client into separate file (#10784)Timotej S