Perform HTTP request on backend to retrieve secure endpoint location
This commit is contained in:
esp32_device
29
esp32_device/main/http_client.h
Normal file
29
esp32_device/main/http_client.h
Normal file
@ -0,0 +1,29 @@
|
||||
/**
|
||||
* HTTP client
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
typedef struct
|
||||
{
|
||||
char *url;
|
||||
} http_request_opts;
|
||||
|
||||
/**
|
||||
* Perform an HTTP request.
|
||||
*
|
||||
* Returns NULL in case of failure or the response else. The memory
|
||||
* must be released by the caller.
|
||||
*/
|
||||
char *http_client_exec(const http_request_opts *opts);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user