pub unsafe extern "C" fn esp_http_client_write(
    client: esp_http_client_handle_t,
    buffer: *const c_char,
    len: c_int
) -> c_int
Expand description

@brief This function will write data to the HTTP connection previously opened by esp_http_client_open()

@param[in] client The esp_http_client handle @param buffer The buffer @param[in] len This value must not be larger than the write_len parameter provided to esp_http_client_open()

@return - (-1) if any errors - Length of data written