sajith/curl+cyassl.git
15 years agocyassl initial support cyassl
Sajith T S [Tue, 31 Mar 2009 10:33:26 +0000 (16:03 +0530)]
cyassl initial support

15 years agoignore generated stuff.
Sajith T S [Tue, 31 Mar 2009 10:14:32 +0000 (15:44 +0530)]
ignore generated stuff.

15 years agoconfigure curl with cyassl.
Sajith T S [Tue, 31 Mar 2009 10:14:04 +0000 (15:44 +0530)]
configure curl with cyassl.

15 years agosome minor Makefile tweaks. master upstream incoming/HEAD incoming/master
gknauf [Sun, 29 Mar 2009 19:40:00 +0000 (19:40 +0000)]
some minor Makefile tweaks.

15 years agoGary Maxwell helped us clarify that CURLOPT_SHARE specificly needs the locking
bagder [Fri, 20 Mar 2009 23:28:20 +0000 (23:28 +0000)]
Gary Maxwell helped us clarify that CURLOPT_SHARE specificly needs the locking
functions if the easy handles are used in multiple threads

15 years agoremoved useless comment
bagder [Fri, 20 Mar 2009 12:42:29 +0000 (12:42 +0000)]
removed useless comment

15 years agoAdd a link to "Potential Errors Passing CRT Objects Across DLL Boundaries"
yangtse [Wed, 18 Mar 2009 13:58:29 +0000 (13:58 +0000)]
Add a link to "Potential Errors Passing CRT Objects Across DLL Boundaries"

15 years ago- Kamil Dudka brought a patch that enables 6 additional crypto algorithms when
bagder [Wed, 18 Mar 2009 12:48:51 +0000 (12:48 +0000)]
- Kamil Dudka brought a patch that enables 6 additional crypto algorithms when
  NSS is used. These ciphers were added in NSS 3.4 and require to be enabled
  explicitly.

15 years agominor fix
bagder [Wed, 18 Mar 2009 09:14:28 +0000 (09:14 +0000)]
minor fix

15 years agoIf CURL_DISABLE_PROXY is defined, we must allow socks_sspi.c to call
giva [Sun, 15 Mar 2009 13:43:47 +0000 (13:43 +0000)]
If CURL_DISABLE_PROXY is defined, we must allow socks_sspi.c to call
Curl_blockread_all(). It is needed in code inside USE_WINDOWS_SSPI.

15 years agowe use libssh2_version() now if available
bagder [Fri, 13 Mar 2009 10:02:26 +0000 (10:02 +0000)]
we use libssh2_version() now if available

15 years ago- Use libssh2_version() to present the libssh2 version in case the libssh2
bagder [Fri, 13 Mar 2009 09:58:15 +0000 (09:58 +0000)]
- Use libssh2_version() to present the libssh2 version in case the libssh2
  library is found to support it.

15 years agoFix TELNET transfers not being aborted upon write callback failures
yangtse [Thu, 12 Mar 2009 13:18:25 +0000 (13:18 +0000)]
Fix TELNET transfers not being aborted upon write callback failures

15 years agoAdd Curl_read() return code checking
yangtse [Thu, 12 Mar 2009 02:12:05 +0000 (02:12 +0000)]
Add Curl_read() return code checking

15 years agoOops, make the memory magic debug stuff done before global init too just to
bagder [Wed, 11 Mar 2009 23:00:31 +0000 (23:00 +0000)]
Oops, make the memory magic debug stuff done before global init too just to
catch them all. The memory debug stuff is not in the public API anyway.

15 years ago- Kamil Dudka made the curl tool properly call curl_global_init() before any
bagder [Wed, 11 Mar 2009 22:56:03 +0000 (22:56 +0000)]
- Kamil Dudka made the curl tool properly call curl_global_init() before any
  other libcurl function.

15 years agoupdate the embedded copyright year
bagder [Wed, 11 Mar 2009 09:00:34 +0000 (09:00 +0000)]
update the embedded copyright year

15 years agos/u_long/unsigned long/
yangtse [Wed, 11 Mar 2009 05:09:03 +0000 (05:09 +0000)]
s/u_long/unsigned long/

15 years agofix previous commit misplaced break statement
yangtse [Wed, 11 Mar 2009 04:45:18 +0000 (04:45 +0000)]
fix previous commit misplaced break statement

15 years agoAdded TELNET timeout support for Windows builds
yangtse [Wed, 11 Mar 2009 04:15:33 +0000 (04:15 +0000)]
Added TELNET timeout support for Windows builds

15 years agoMoved 7.19.2 and older entries from CHANGES to CHANGES.0 (the latter is not
bagder [Tue, 10 Mar 2009 10:00:06 +0000 (10:00 +0000)]
Moved 7.19.2 and older entries from CHANGES to CHANGES.0 (the latter is not
shipped in release archives but is only in CVS)

15 years ago- Frank Hempel found out a bug and provided the fix:
bagder [Mon, 9 Mar 2009 12:21:46 +0000 (12:21 +0000)]
- Frank Hempel found out a bug and provided the fix:

  curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE
  option. It only enabled the cookie engine in the destination handle if
  data->cookies is not NULL (where data is the source handle). In case of a
  newly initialized handle which just had the cookie support enabled by a
  curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was
  still NULL because the setopt-call only appends the value to
  data->change.cookielist, hence duplicating this handle would not have the
  cookie engine switched on.

  We also concluded that the slist-functionality would be suitable for being
  put in its own module rather than simply hanging out in lib/sendf.c so I
  created lib/slist.[ch] for them.

15 years ago- Andreas Farber made the 'buildconf' script check for the presence of m4
bagder [Mon, 9 Mar 2009 09:24:31 +0000 (09:24 +0000)]
- Andreas Farber made the 'buildconf' script check for the presence of m4
  scripts to make it detect a bad checkout earlier. People with older
  checkouts who don't do cvs update with the -d option won't get the new dirs
  and then will get funny outputs that can be a bit hard to understand and
  fix.

15 years agoAvoid a compile warning in --disable-proxy case
danf [Mon, 9 Mar 2009 04:32:51 +0000 (04:32 +0000)]
Avoid a compile warning in --disable-proxy case

15 years ago- Andre Guibert de Bruet found and fixed a code segment in ssluse.c where the
bagder [Sun, 8 Mar 2009 22:56:55 +0000 (22:56 +0000)]
- Andre Guibert de Bruet found and fixed a code segment in ssluse.c where the
  allocation of the memory BIO was not being properly checked.

15 years ago- Andre Guibert de Bruet fixed the gnutls-using code: There are a few places
bagder [Sun, 8 Mar 2009 22:52:05 +0000 (22:52 +0000)]
- Andre Guibert de Bruet fixed the gnutls-using code: There are a few places
  in the gnutls code where we were checking for negative values for errors,
  when the man pages state that GNUTLS_E_SUCCESS is returned on success and
  other values indicate error conditions.

15 years agoAndre Guibert de Bruet fixed a typo in the error message
bagder [Sun, 8 Mar 2009 22:45:59 +0000 (22:45 +0000)]
Andre Guibert de Bruet fixed a typo in the error message

15 years ago- Bill Egert pointed out (http://curl.haxx.se/bug/view.cgi?id=2671602) that
bagder [Sun, 8 Mar 2009 22:42:50 +0000 (22:42 +0000)]
- Bill Egert pointed out (curl.haxx.se/bug/view.cgi?id=2671602) that
  curl didn't use sprintf() in a way that is documented to work in POSIX but
  since we use our own printf() code (from libcurl) that shouldn't be a
  problem. Nonetheless I modified the code to not rely on such particular
  features and to not cause further raised eyebrowse with no good reason.

15 years agoExpanded the security section of the libcurl-tutorial man page to cover
danf [Thu, 5 Mar 2009 06:44:18 +0000 (06:44 +0000)]
Expanded the security section of the libcurl-tutorial man page to cover
more issues for authors to consider when writing robust libcurl-using
applications.

15 years agoFix NTLM authentication memory leak on SSPI enabled Windows builds
yangtse [Thu, 5 Mar 2009 01:23:14 +0000 (01:23 +0000)]
Fix NTLM authentication memory leak on SSPI enabled Windows builds

15 years agoFixed a problem with m4 quoting in the OpenSSL configure check reported
danf [Wed, 4 Mar 2009 08:09:39 +0000 (08:09 +0000)]
Fixed a problem with m4 quoting in the OpenSSL configure check reported
by Daniel Johnson.

15 years agoAdded test 1097 to verify the bug Axel Kuhn epidox posted on March 3 2009
bagder [Tue, 3 Mar 2009 13:25:19 +0000 (13:25 +0000)]
Added test 1097 to verify the bug Axel Kuhn epidox posted on March 3 2009
on curl-users, it is also added to DISABLED since I don't have time to work
on it further right now.

15 years ago- David James brought a patch that make libcurl close (all) dead connections
bagder [Tue, 3 Mar 2009 11:01:24 +0000 (11:01 +0000)]
- David James brought a patch that make libcurl close (all) dead connections
  whenever you attempt to open a new connection.

15 years ago15 additional contributor from the 7.19.4 RELEASE-NOTES
bagder [Tue, 3 Mar 2009 10:41:11 +0000 (10:41 +0000)]
15 additional contributor from the 7.19.4 RELEASE-NOTES

15 years agoGah! We can't have 'curl' added here since even though it removes the curl
bagder [Tue, 3 Mar 2009 10:02:26 +0000 (10:02 +0000)]
Gah! We can't have 'curl' added here since even though it removes the curl
binary it also removes the include/curl subdir!

15 years agoOptions CURLOPT_REDIR_PROTOCOLS and CURLOPT_PROTOCOLS, and associated definitions...
patrickm [Tue, 3 Mar 2009 09:57:21 +0000 (09:57 +0000)]
Options CURLOPT_REDIR_PROTOCOLS and CURLOPT_PROTOCOLS, and associated definitions added to RPG binding

15 years agostart over on the journey towards 7.19.5
bagder [Mon, 2 Mar 2009 23:44:42 +0000 (23:44 +0000)]
start over on the journey towards 7.19.5

15 years ago- David Kierznowski notified us about a security flaw curl-7.19.4
bagder [Mon, 2 Mar 2009 23:05:31 +0000 (23:05 +0000)]
- David Kierznowski notified us about a security flaw
  (http://curl.haxx.se/docs/adv_20090303.html also known as CVE-2009-0037) in
  which previous libcurl versions (by design) can be tricked to access an
  arbitrary local/different file instead of a remote one when
  CURLOPT_FOLLOWLOCATION is enabled. This flaw is now fixed in this release
  together this the addition of two new setopt options for controlling this
  new behavior:

  o CURLOPT_REDIR_PROTOCOLS controls what protocols libcurl is allowed to
  follow to when CURLOPT_FOLLOWLOCATION is enabled. By default, this option
  excludes the FILE and SCP protocols and thus you nee to explicitly allow
  them in your app if you really want that behavior.

  o CURLOPT_PROTOCOLS controls what protocol(s) libcurl is allowed to fetch
  using the primary URL option. This is useful if you want to allow a user or
  other outsiders control what URL to pass to libcurl and yet not allow all
  protocols libcurl may have been built to support.

15 years ago7.19.4 won't get anything else
bagder [Mon, 2 Mar 2009 10:43:46 +0000 (10:43 +0000)]
7.19.4 won't get anything else

15 years agothe Eiffel binding
bagder [Mon, 2 Mar 2009 09:03:11 +0000 (09:03 +0000)]
the Eiffel binding

15 years agonothing more left for 7.19.4, the issue #216 is moved to 7.19.5 since we're
bagder [Sun, 1 Mar 2009 14:20:26 +0000 (14:20 +0000)]
nothing more left for 7.19.4, the issue #216 is moved to 7.19.5 since we're
too close to release now

15 years agofor portability reasons: s/inet_pton/Curl_inet_pton/
yangtse [Sat, 28 Feb 2009 01:35:53 +0000 (01:35 +0000)]
for portability reasons: s/inet_pton/Curl_inet_pton/

15 years agofix compiler warning
yangtse [Sat, 28 Feb 2009 01:11:57 +0000 (01:11 +0000)]
fix compiler warning

15 years agomention the '-o -' trick
bagder [Fri, 27 Feb 2009 13:52:05 +0000 (13:52 +0000)]
mention the '-o -' trick

15 years ago217 - Dan Fandrich's "GnuTLS initialization thread safety"
bagder [Fri, 27 Feb 2009 12:11:08 +0000 (12:11 +0000)]
217 - Dan Fandrich's "GnuTLS initialization thread safety"

218 - Senthil Raja Velu's "CURLOPT_LOCALPORT option broken", patch by
      Markus Koetter

Both are now committed

15 years ago- Senthil Raja Velu reported a problem when CURLOPT_INTERFACE and
bagder [Fri, 27 Feb 2009 12:07:14 +0000 (12:07 +0000)]
- Senthil Raja Velu reported a problem when CURLOPT_INTERFACE and
  CURLOPT_LOCALPORT were used together (the local port bind failed), and
  Markus Koetter provided the fix!

15 years agoIndentation fixes, untabify and related whitespace-cleanup. No code changed.
bagder [Fri, 27 Feb 2009 08:53:10 +0000 (08:53 +0000)]
Indentation fixes, untabify and related whitespace-cleanup. No code changed.

15 years agocorrected and clarified the top comment
bagder [Wed, 25 Feb 2009 12:51:39 +0000 (12:51 +0000)]
corrected and clarified the top comment

15 years ago- As Daniel Fandrich figured out, we must do the GnuTLS initing in the
bagder [Wed, 25 Feb 2009 12:51:17 +0000 (12:51 +0000)]
- As Daniel Fandrich figured out, we must do the GnuTLS initing in the
  curl_global_init() function to properly maintain the performing functions
  thread-safe. We've previously (28 April 2007) moved the init to a later time
  just to avoid it to fail very early when libgcrypt dislikes the situation,
  but that move was bad and the fix should rather be in libgcrypt or
  elsewhere.

15 years agoimproved
bagder [Tue, 24 Feb 2009 09:42:39 +0000 (09:42 +0000)]
improved

15 years agoA handy little helper file for doing recursive diffs on curl source/build trees
bagder [Tue, 24 Feb 2009 09:35:55 +0000 (09:35 +0000)]
A handy little helper file for doing recursive diffs on curl source/build trees
without involving CVS:

diff -X diff-exclude -ru curl-old curl-patched

15 years ago- Brian J. Murrell found out that Negotiate proxy authentication didn't work.
bagder [Tue, 24 Feb 2009 08:30:09 +0000 (08:30 +0000)]
- Brian J. Murrell found out that Negotiate proxy authentication didn't work.
  It happened because the code used the struct for server-based auth all the
  time for both proxy and server auth which of course was wrong.

15 years ago4.17 Non-functional connect timeouts
bagder [Mon, 23 Feb 2009 21:21:00 +0000 (21:21 +0000)]
4.17 Non-functional connect timeouts

15 years ago- After a bug reported by James Cheng I've made curl_easy_getinfo() for
bagder [Mon, 23 Feb 2009 18:45:00 +0000 (18:45 +0000)]
- After a bug reported by James Cheng I've made curl_easy_getinfo() for
  CURLINFO_CONTENT_LENGTH_DOWNLOAD and CURLINFO_CONTENT_LENGTH_UPLOAD return
  -1 if the sizes aren't know. Previously these returned 0, make it impossible
  to detect the difference between actually zero and unknown.

15 years agoFor 7.19.5 (due to feature freeze)
bagder [Mon, 23 Feb 2009 16:28:51 +0000 (16:28 +0000)]
For 7.19.5 (due to feature freeze)
220 - Take advantage of libssh2_version() that's been added for the upcoming
      1.1, to extract the run-time version number properly.

15 years agoadjustment for new Mac OS X framework build script
yangtse [Mon, 23 Feb 2009 14:34:40 +0000 (14:34 +0000)]
adjustment for new Mac OS X framework build script

15 years agoDaniel Johnson provided a shell script that will perform all the steps needed
yangtse [Mon, 23 Feb 2009 12:39:06 +0000 (12:39 +0000)]
Daniel Johnson provided a shell script that will perform all the steps needed
to build a Mac OS X fat ppc/i386 or ppc64/x86_64 libcurl.framework

15 years agomention default port number
bagder [Mon, 23 Feb 2009 10:40:36 +0000 (10:40 +0000)]
mention default port number

15 years ago- I renamed everything in the windows builds files that used the name 'curllib'
bagder [Mon, 23 Feb 2009 09:36:54 +0000 (09:36 +0000)]
- I renamed everything in the windows builds files that used the name 'curllib'
  to the proper 'libcurl' as clearly this caused confusion.

15 years agolzma compressed tarballs too for some testing, it does produce MUCH smaller
bagder [Mon, 23 Feb 2009 09:36:08 +0000 (09:36 +0000)]
lzma compressed tarballs too for some testing, it does produce MUCH smaller
files

15 years agouse the internal snprintf() function
yangtse [Mon, 23 Feb 2009 01:04:18 +0000 (01:04 +0000)]
use the internal snprintf() function

15 years agomention 4 pending fixes/patches
bagder [Fri, 20 Feb 2009 22:56:55 +0000 (22:56 +0000)]
mention 4 pending fixes/patches

15 years agoMark Incley noticed VS2008 compilation halting when building for Windows 2000
yangtse [Fri, 20 Feb 2009 12:10:23 +0000 (12:10 +0000)]
Mark Incley noticed VS2008 compilation halting when building for Windows 2000

15 years agoDo not halt compilation when using VS2008 to build a Windows 2000 target
yangtse [Fri, 20 Feb 2009 11:30:11 +0000 (11:30 +0000)]
Do not halt compilation when using VS2008 to build a Windows 2000 target

15 years agoclarified the FTP passive/active mode options somewhat
bagder [Fri, 20 Feb 2009 09:14:25 +0000 (09:14 +0000)]
clarified the FTP passive/active mode options somewhat

15 years agothe FTP multi interface bug
bagder [Fri, 20 Feb 2009 08:19:19 +0000 (08:19 +0000)]
the FTP multi interface bug

15 years ago- Linus Nielsen Feltzing reported and helped me repeat and fix a problem with
bagder [Fri, 20 Feb 2009 08:16:03 +0000 (08:16 +0000)]
- Linus Nielsen Feltzing reported and helped me repeat and fix a problem with
  FTP with the multi interface: when a transfer fails, like when aborted by a
  write callback, the control connection was wrongly closed and thus not
  re-used properly.

  This change is also an attempt to cleanup the code somewhat in this area, as
  now the FTP code attempts to keep (better) track on pending responses
  necessary to get read in ftp_done().

15 years agoThe C++ binding home was changed
bagder [Thu, 19 Feb 2009 18:49:03 +0000 (18:49 +0000)]
The C++ binding home was changed

15 years agoverify that a 550-response for a RETR returns 78 but also that the control
bagder [Thu, 19 Feb 2009 13:47:06 +0000 (13:47 +0000)]
verify that a 550-response for a RETR returns 78 but also that the control
connection is kept alive afterwards

15 years ago- Patrik Thunstrom reported a problem and helped me repeat it. It turned out
bagder [Thu, 19 Feb 2009 10:36:20 +0000 (10:36 +0000)]
- Patrik Thunstrom reported a problem and helped me repeat it. It turned out
  libcurl did a superfluous 1000ms wait when doing SFTP downloads!

  We read data with libssh2 while doing the "DO" operation for SFTP and then
  when we were about to start getting data for the actual file part, the
  "TRANSFER" part, we waited for socket action (in 1000ms) before doing a
  libssh2-read. But in this case libssh2 had already read and buffered the
  data so we ended up always just waiting 1000ms before we get working on the
  data!

15 years agospell-fixed comments and other minor non-code edits
bagder [Wed, 18 Feb 2009 19:31:55 +0000 (19:31 +0000)]
spell-fixed comments and other minor non-code edits

15 years agoFTP downloads (i.e.: RETR) ending with code 550 now return error CURLE_REMOTE_FILE_NO...
patrickm [Wed, 18 Feb 2009 11:40:16 +0000 (11:40 +0000)]
FTP downloads (i.e.: RETR) ending with code 550 now return error CURLE_REMOTE_FILE_NOT_FOUND instead of CURLE_FTP_COULDNT_RETR_FILE.

15 years agoContinue sync work on OS400 specific code and RPG binding.
patrickm [Tue, 17 Feb 2009 16:16:07 +0000 (16:16 +0000)]
Continue sync work on OS400 specific code and RPG binding.

15 years ago- Kamil Dudka made NSS-powered builds compile and run again!
bagder [Tue, 17 Feb 2009 12:18:34 +0000 (12:18 +0000)]
- Kamil Dudka made NSS-powered builds compile and run again!

15 years ago- A second follow-up change by Andre Guibert de Bruet to fix a related memory
bagder [Tue, 17 Feb 2009 12:14:41 +0000 (12:14 +0000)]
- A second follow-up change by Andre Guibert de Bruet to fix a related memory
  leak like that fixed on the 14th. When zlib returns failure, we need to
  cleanup properly before returning error.

15 years agothree new CURLFTP_CREATE_DIR* symbols
bagder [Tue, 17 Feb 2009 09:43:27 +0000 (09:43 +0000)]
three new CURLFTP_CREATE_DIR* symbols

15 years ago- CURLOPT_FTP_CREATE_MISSING_DIRS can now be set to 2 in addition to 1 for
bagder [Tue, 17 Feb 2009 09:07:25 +0000 (09:07 +0000)]
- CURLOPT_FTP_CREATE_MISSING_DIRS can now be set to 2 in addition to 1 for
  plain FTP connections, and it will then allow MKD to fail once and retry the
  CWD afterwards. This is especially useful if you're doing many simultanoes
  connections against the same server and they all have this option enabled,
  as then CWD may first fail but then another connection does MKD before this
  connection and thus MKD fails but trying CWD works! The numbers can
  (should?) now be set with the convenience enums now called
  CURLFTP_CREATE_DIR and CURLFTP_CREATE_DIR_RETRY.

  Tests has proven that if you're making an application that uploads a set of
  files to an ftp server, you will get a noticable gain in speed if you're
  using multiple connections and this option will be then be very useful.

15 years agoPreparation of imminent release: synchronizing OS400 wrappers + RPG binding to curren...
patrickm [Mon, 16 Feb 2009 15:33:17 +0000 (15:33 +0000)]
Preparation of imminent release: synchronizing OS400 wrappers + RPG binding to current state.

15 years agoIn MSVC9 'time_t' is a 64-bit quantity. This causes a truncation warning
giva [Sat, 14 Feb 2009 13:43:18 +0000 (13:43 +0000)]
In MSVC9 'time_t' is a 64-bit quantity. This causes a truncation warning
when an 'int' is assigned to a 'time_t' variable. Hence redefine 'retry_time'
and 'retry_max' to 'time_t'.

15 years agonah, use the simpler year - year range syntax only, no matter what emacs'
bagder [Sat, 14 Feb 2009 09:12:55 +0000 (09:12 +0000)]
nah, use the simpler year - year range syntax only, no matter what emacs'
copyright-update script thinks

15 years ago- Andre Guibert de Bruet found and fixed a memory leak in the content encoding
bagder [Sat, 14 Feb 2009 09:09:09 +0000 (09:09 +0000)]
- Andre Guibert de Bruet found and fixed a memory leak in the content encoding
  code, which could happen on libz errors.

15 years agothere is nothing left planned for next release, metalink experiments are post-
bagder [Fri, 13 Feb 2009 14:34:07 +0000 (14:34 +0000)]
there is nothing left planned for next release, metalink experiments are post-
poned

15 years agoAnthony Bryan's letter=>symbol fixes
bagder [Fri, 13 Feb 2009 09:12:52 +0000 (09:12 +0000)]
Anthony Bryan's letter=>symbol fixes

15 years agoignore
yangtse [Fri, 13 Feb 2009 06:34:44 +0000 (06:34 +0000)]
ignore

15 years agoRemove following files generated on previous buildconf run:
yangtse [Fri, 13 Feb 2009 06:25:35 +0000 (06:25 +0000)]
Remove following files generated on previous buildconf run:
ltoptions.m4 ltsugar.m4 ltversion.m4 lt~obsolete.m4

15 years agocheck for poll() as it is done for other functions
yangtse [Fri, 13 Feb 2009 05:49:58 +0000 (05:49 +0000)]
check for poll() as it is done for other functions

15 years agoFixed NTLM on curl-config --features with GnuTLS
danf [Thu, 12 Feb 2009 23:57:17 +0000 (23:57 +0000)]
Fixed NTLM on curl-config --features with GnuTLS

15 years agoAdded support for Digest and NTLM authentication using GnuTLS.
danf [Thu, 12 Feb 2009 20:48:40 +0000 (20:48 +0000)]
Added support for Digest and NTLM authentication using GnuTLS.

15 years agocredit Jocelyn Jaubert for his bug report and associated work
bagder [Thu, 12 Feb 2009 08:05:23 +0000 (08:05 +0000)]
credit Jocelyn Jaubert for his bug report and associated work

15 years ago- CURLINFO_CONDITION_UNMET was added to allow an application to get to know if
bagder [Wed, 11 Feb 2009 21:47:14 +0000 (21:47 +0000)]
- CURLINFO_CONDITION_UNMET was added to allow an application to get to know if
  the condition in the previous request was unmet. This is typically a time
  condition set with CURLOPT_TIMECONDITION and was previously not possible to
  reliably figure out. From bug report #2565128
  (http://curl.haxx.se/bug/view.cgi?id=2565128)

15 years agoAdded docs/libcurl/symbols-in-versions
bagder [Tue, 10 Feb 2009 13:06:25 +0000 (13:06 +0000)]
Added docs/libcurl/symbols-in-versions

15 years agocompleted the CURLPROXY_ collection
bagder [Tue, 10 Feb 2009 12:52:09 +0000 (12:52 +0000)]
completed the CURLPROXY_ collection

15 years agoinclude the symbols-in-versions file in the release archive
bagder [Tue, 10 Feb 2009 12:39:26 +0000 (12:39 +0000)]
include the symbols-in-versions file in the release archive

15 years agoremove a trailing name from a comment
bagder [Tue, 10 Feb 2009 12:34:41 +0000 (12:34 +0000)]
remove a trailing name from a comment

15 years agointroducing the symbols-in-versions file, in an effort to help app authors
bagder [Tue, 10 Feb 2009 12:33:10 +0000 (12:33 +0000)]
introducing the symbols-in-versions file, in an effort to help app authors
to better know and track symbols in earlier libcurl versions

15 years agomention when CURLOPT_ADDRESS_SCOPE was added
bagder [Tue, 10 Feb 2009 12:32:12 +0000 (12:32 +0000)]
mention when CURLOPT_ADDRESS_SCOPE was added

15 years ago#45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names.
bagder [Mon, 9 Feb 2009 16:09:45 +0000 (16:09 +0000)]
#45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names.
   getaddrinfo() sorts the response list

This isn't a libcurl bug since this is how getaddrinfo() is *supposed* to work!
Apparently you deal with this using the /etc/gai.conf file.

15 years ago#53. SFTP busy-loop problem. should be fixed in 7.19.3 with libssh2 1.0 (or
bagder [Mon, 9 Feb 2009 16:08:08 +0000 (16:08 +0000)]
#53. SFTP busy-loop problem. should be fixed in 7.19.3 with libssh2 1.0 (or
later)

15 years agoMoved Curl_strntoupper() to the rawstr.c file where the other raw string
bagder [Sat, 7 Feb 2009 22:53:37 +0000 (22:53 +0000)]
Moved Curl_strntoupper() to the rawstr.c file where the other raw string
functions are.

15 years ago214 - progress bar prefix, second try (for the curl tool)
bagder [Sat, 7 Feb 2009 22:47:07 +0000 (22:47 +0000)]
214 - progress bar prefix, second try (for the curl tool)
patch declined