aboutsummaryrefslogtreecommitdiffstats
path: root/keyserver/curl-shim.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-02-23curl-shim: clean up varargsDaniel Kahn Gillmor1-0/+2
* keyserver/curl-shim.c (curl_easy_setopt) : ensure that va_end is called. -- stdarg(3) says: Each invocation of va_start() must be matched by a corresponding invocation of va_end() in the same function. Observed by Joshua Rogers <[email protected]> Debian-Bug-Id: #773475 [dkg: rebased to STABLE-BRANCH-1-4] Signed-off-by: Daniel Kahn Gillmor <[email protected]>
2013-03-03Emulate curl_easy_getinfo and CURLINFO_RESPONSE_CODE in curl-shim.David Shaw1-1/+23
* keyserver/curl-shim.h, keyserver/curl-shim.c (curl_easy_getinfo): New. Return the HTTP status code for the last transfer.
2012-12-19Fix issue 1446: honor ports given in SRV responses.David Shaw1-3/+23
* common/http.c (send_request, connect_server, http_open): Use a struct srv instead of a single srvtag so we can pass the chosen host and port back to the caller. (connect_server): Use the proper port in the HAVE_GETADDRINFO case. * keyserver/curl-shim.c (curl_easy_perform): Use struct srv and log chosen host and port. * keyserver/gpgkeys_hkp.c (main): Properly take the port given by SRV. Backported from ba9e974f1fd85b3dbbfb5e26d7a14f71d07c7cf2
2009-08-25Restructured the compat functions and changed its license.Werner Koch1-1/+1
New fucntion xstrconcat for future use.
2009-05-26Avoid caches to get the most recent copy of the key. This is bugDavid Shaw1-2/+30
#1061
2009-04-03* curl-shim.h, curl-shim.c (curl_easy_setopt, curl_easy_perform): AddDavid Shaw1-3/+8
a CURLOPT_SRVTAG_GPG_HACK (passed through the the http engine). * http.h: Allow passing srvtag to http_open and http_open_document. * http.c (http_open, http_open_document): Allow passing srvtag to http_open and http_open_document.
2008-04-14* gpgkeys_curl.c (main), gpgkeys_hkp.c (main): Make sure all libcurlDavid Shaw1-1/+1
number options are passed as long.
2008-04-14* curl-shim.c (curl_easy_setopt): Minor tweak to match the real curlDavid Shaw1-3/+3
better - libcurl uses 'long', not 'unsigned int'.
2007-10-23Switched to GPLv3.Werner Koch1-4/+2
Updated gettext.
2007-03-13* gpgkeys_curl.c (main): Use curl_version_info to verify that theDavid Shaw1-3/+8
protocol we're about to use is actually available. * curl-shim.h, curl-shim.c (curl_free): Make into a macro. (curl_version_info): New. Only advertises "http" for our shim, of course.
2007-02-11* gpgkeys_ldap.c (send_key): Missing a free().David Shaw1-1/+8
* curl-shim.c (curl_easy_perform): Some debugging items that may be handy.
2007-01-16* curl-shim.h, curl-shim.c, gpgkeys_hkp.c: Rename curl_escape() toDavid Shaw1-2/+2
curl_easy_escape() to match cURL.
2006-07-21 * curl-shim.c (curl_easy_perform): Minor cleanup of proxy code.David Shaw1-5/+3
2006-07-12* gpgkeys_ldap.c (printquoted), curl-shim.c (curl_escape): Fix badDavid Shaw1-1/+1
encoding of characters > 127. Noted by Nalin Dahyabhai.
2006-02-22* curl-shim.h, curl-shim.c (curl_easy_init, curl_easy_setopt,David Shaw1-3/+3
curl_easy_perform): Mingw has 'stderr' as a macro?
2006-02-21* curl-shim.h, curl-shim.c (curl_easy_init, curl_easy_setopt,David Shaw1-2/+17
curl_easy_perform): Add CURLOPT_VERBOSE and CURLOPT_STDERR for easier debugging.
2005-12-06* curl-shim.c (curl_easy_perform): Fix build warning (code beforeDavid Shaw1-1/+2
declaration).
2005-07-27Converted all m_free to xfree etc.Werner Koch1-1/+1
2005-07-20* gpgkeys_curl.c (get_key, main): Don't try and be smart about whatDavid Shaw1-6/+20
protocols we handle. Directly pass them to curl or fake-curl and see if an error comes back. * curl-shim.h, curl-shim.c (handle_error), ksutil.c (curl_err_to_gpg_err): Add support for CURLE_UNSUPPORTED_PROTOCOL in fake curl. * Makefile.am: Don't need -DFAKE_CURL any longer since it's in config.h.
2005-06-23* gpgkeys_mailto.in, gpgkeys_test.in: Use @VERSION@ so version stringDavid Shaw1-2/+17
stays up to date. * gpgkeys_http.c: Don't need to define HTTP_PROXY_ENV here since it's in ksutil.h. * gpgkeys_curl.c (get_key, main), gpgkeys_hkp.c (main): Pass AUTH values to curl or curl-shim. * curl-shim.c (curl_easy_perform), gpgkeys_curl.c (main), gpgkeys_hkp.c (main): Use curl-style proxy semantics.
2005-06-23* curl-shim.h, curl-shim.c (curl_easy_setopt, curl_easy_perform): AddDavid Shaw1-2/+5
CURLOPT_USERPWD option for HTTP auth.
2005-05-31Updated FSF street address and preparations for a release candidate.Werner Koch1-1/+2
2005-04-17* gpgkeys_hkp.c: New hkp handler that uses curl or curl-shim.David Shaw1-67/+54
* Makefile.am: Build new gpgkeys_hkp. * curl-shim.c (curl_easy_perform): Cleanup.
2005-04-17* curl-shim.h, curl-shim.c (handle_error, curl_easy_setopt,David Shaw1-18/+92
curl_easy_perform): Add POST functionality to the curl shim.
2005-04-16* curl-shim.h, curl-shim.c (curl_escape, curl_free): EmulateDavid Shaw1-0/+61
curl_escape and curl_free.
2005-02-12* curl-shim.c (curl_easy_perform): Fix compile warning.David Shaw1-1/+1
* curl-shim.h, gpgkeys_curl.c (main), gpgkeys_ldap.c (main): Add ca-cert-file option, to pass in the SSL cert.
2005-02-11* curl-shim.h, curl-shim.c: New. This is code to fake the curl API inDavid Shaw1-0/+153
terms of the current HTTP iobuf API. * gpgkeys_curl.c [FAKE_CURL], Makefile.am: If FAKE_CURL is set, link with the iobuf code rather than libcurl.