Searched refs:curl (Results 1 - 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/unbound/contrib/ios/
H A Dinstall_tools.sh8 brew install curl perl 1>/dev/null
H A Dinstall_openssl.sh4 if ! curl -L -k -s -o openssl-1.1.1d.tar.gz https://www.openssl.org/source/openssl-1.1.1d.tar.gz;
H A Dinstall_expat.sh4 if ! curl -L -k -s -o expat-2.2.9.tar.gz https://github.com/libexpat/libexpat/releases/download/R_2_2_9/expat-2.2.9.tar.gz;
/freebsd-11-stable/crypto/openssl/apps/
H A Dtsget40 my $curl = WWW::Curl::Easy::new();
43 $curl->setopt(CURLOPT_VERBOSE, 1) if $options{d};
44 $curl->setopt(CURLOPT_FAILONERROR, 1);
45 $curl->setopt(CURLOPT_USERAGENT, "OpenTSA tsget.pl/" . (split / /, $::version)[2]);
48 $curl->setopt(CURLOPT_UPLOAD, 1);
49 $curl->setopt(CURLOPT_CUSTOMREQUEST, "POST");
50 $curl->setopt(CURLOPT_HTTPHEADER,
53 $curl->setopt(CURLOPT_READFUNCTION, \&read_body);
54 $curl->setopt(CURLOPT_HEADERFUNCTION, sub { return length($_[0]); });
57 $curl
[all...]
/freebsd-11-stable/release/scripts/
H A Datlas-upload.sh79 BOXRESULT=$(/usr/local/bin/curl -s "${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}?access_token=${KEY}")
87 /usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/boxes -X POST -d "box[name]=${BOX}" -d "access_token=${KEY}" > /dev/null
88 /usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX} -X PUT -d "box[is_private]=false" -d "access_token=${KEY}" > /dev/null
89 /usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX} -X PUT -d "box[description]='${DESCRIPTION}'" -d "access_token=${KEY}" > /dev/null
95 VERSIONRESULT=$(/usr/local/bin/curl -s "${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/version/${VERSION}?access_token=${KEY}")
103 /usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/versions -X POST -d "version[version]=${VERSION}" -d "access_token=${KEY}" > /dev/null
104 /usr/local/bin/curl -s ${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/version/${VERSION} -X PUT -d "version[description]=${DESCRIPTION}" -d "access_token=${KEY}" > /dev/null
105 VERSIONRESULT=$(/usr/local/bin/curl -s "${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/version/${VERSION}?access_token=${KEY}")
116 PROVIDERRESULT=$(/usr/local/bin/curl -s "${ATLAS_UPLOAD_URL}/api/v1/box/${USERNAME}/${BOX}/version/${VERSION}/provider/${PROVIDER}?access_token=${KEY}")
124 /usr/local/bin/curl
[all...]
/freebsd-11-stable/contrib/unbound/contrib/android/
H A Dinstall_tools.sh6 sudo apt-get -qq install --no-install-recommends curl tar zip unzip perl openjdk-8-jdk autoconf automake libtool pkg-config
H A Dinstall_ndk.sh19 if ! curl -L -k -s -o "$HOME/android-sdk.zip" https://dl.google.com/android/repository/commandlinetools-linux-6200805_latest.zip;
26 if ! curl -L -k -s -o "$HOME/android-ndk.zip" https://dl.google.com/android/repository/android-ndk-r20b-linux-x86_64.zip;
H A Dinstall_expat.sh4 if ! curl -L -k -s -o expat-2.2.9.tar.gz https://github.com/libexpat/libexpat/releases/download/R_2_2_9/expat-2.2.9.tar.gz;
H A Dinstall_openssl.sh4 if ! curl -L -k -s -o openssl-1.1.1d.tar.gz https://www.openssl.org/source/openssl-1.1.1d.tar.gz;
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dhttp_curl.c10 #include <curl/curl.h>
45 CURL *curl; member in struct:http_ctx
72 if (ctx->curl) {
73 curl_easy_cleanup(ctx->curl);
74 ctx->curl = NULL;
124 static int curl_cb_debug(CURL *curl, curl_infotype info, char *buf, size_t len, argument
1314 static CURLcode curl_cb_ssl(CURL *curl, void *sslctx, void *parm) argument
1353 CURL *curl; local
1363 curl
1619 CURL *curl; local
1690 CURL *curl; local
[all...]
/freebsd-11-stable/release/
H A DMakefile.vagrant54 .if !exists(/usr/local/bin/curl)
55 . if !exists(${PORTSDIR}/ftp/curl/Makefile)
59 env ASSUME_ALWAYS_YES=yes pkg install -y curl
61 make -C ${PORTSDIR}/ftp/curl BATCH=1 all install clean
/freebsd-11-stable/contrib/subversion/
H A Dget-deps.sh61 [ -z "$HTTP_FETCH" ] && type curl >/dev/null 2>&1 && HTTP_FETCH="curl -sOL"
/freebsd-11-stable/contrib/wpa/hs20/client/
H A DAndroid.mk8 INCLUDES += external/curl/include
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_util.c62 #include <curl/curl.h>
699 CURL *curl;
703 curl = curl_easy_init ();
704 if (curl == NULL) {
708 if ((r = curl_easy_setopt (curl, CURLOPT_URL, url)) != CURLE_OK) {
711 curl_easy_cleanup (curl);
714 curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, ucl_curl_write_callback);
717 curl_easy_setopt (curl, CURLOPT_WRITEDATA, &cbdata);
719 if ((r = curl_easy_perform (curl)) !
[all...]
/freebsd-11-stable/lib/libfetch/
H A Dhttp.c1380 struct url *curl; local
1403 curl = (purl != NULL) ? purl : URL;
1405 if ((conn = fetch_connect(curl->host, curl->port, af, verbose)) == NULL)
/freebsd-11-stable/contrib/sendmail/src/
H A Dmilter.c309 ssize_t len, curl; local
312 curl = 0;
345 len = read(m->mf_sock, buf + curl, sz - curl);
365 curl += len;
366 if (len == 0 || curl >= sz)
371 if (curl != sz)
375 m->mf_name, (long) curl, (long) sz);
379 m->mf_name, (long) curl, (long) sz);
/freebsd-11-stable/contrib/tzdata/
H A DMakefile409 # Name of curl <https://curl.haxx.se/>, used for HTML validation.
410 CURL= curl
/freebsd-11-stable/contrib/unbound/
H A DMakefile.in627 curl -o port-numbers.tmp https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml --compressed

Completed in 114 milliseconds