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

/freebsd-9.3-release/contrib/libucl/src/
H A Ducl_util.c456 CURL *curl;
460 curl = curl_easy_init ();
461 if (curl == NULL) {
465 if ((r = curl_easy_setopt (curl, CURLOPT_URL, url)) != CURLE_OK) {
468 curl_easy_cleanup (curl);
471 curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, ucl_curl_write_callback);
474 curl_easy_setopt (curl, CURLOPT_WRITEDATA, &cbdata);
476 if ((r = curl_easy_perform (curl)) != CURLE_OK) {
481 curl_easy_cleanup (curl);
/freebsd-9.3-release/crypto/heimdal/tools/
H A Dheimdal-build.sh5 fetchmethod=wget #options are: wget, curl, ftp, afs
24 usage="[--current] [--svn SourceRepository] [--cvs-flags] [--result-directory dir] [--fetch-method wget|ftp|curl|cvs|fetch|afs] --keep-tree] [--autotools] [--passhrase string] [--no-email] [--build-dir dir] [--cputime] [--distcheck] [--test-environment env] [--configure-flags flags]"
178 curl)
/freebsd-9.3-release/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-9.3-release/lib/libfetch/
H A Dhttp.c1380 struct url *curl; local
1399 curl = (purl != NULL) ? purl : URL;
1401 if ((conn = fetch_connect(curl->host, curl->port, af, verbose)) == NULL)

Completed in 109 milliseconds