mirror of
https://github.com/ading2210/libcurl.js.git
synced 2025-05-13 22:40:01 -04:00
9 lines
No EOL
251 B
C
9 lines
No EOL
251 B
C
#include "curl/curl.h"
|
|
|
|
#include "types.h"
|
|
#include "util.h"
|
|
|
|
void ftp_set_options(CURL* http_handle, const char* url, int no_body) {
|
|
curl_easy_setopt(http_handle, CURLOPT_NOBODY, (long) no_body);
|
|
curl_easy_setopt(http_handle, CURLOPT_URL, url);
|
|
} |