platform/upstream/curl.git
16 years agoEnabled a few more gcc warnings with --enable-debug. Renamed a few
Dan Fandrich [Thu, 27 Sep 2007 01:45:22 +0000 (01:45 +0000)]
Enabled a few more gcc warnings with --enable-debug.  Renamed a few
variables to avoid shadowing global declarations.

16 years agoFix compiler warning: the address of 'env' will always evaluate as 'true'
Yang Tse [Thu, 27 Sep 2007 00:58:41 +0000 (00:58 +0000)]
Fix compiler warning: the address of 'env' will always evaluate as 'true'

16 years agowe added a curl_easy_setopt() option too
Daniel Stenberg [Wed, 26 Sep 2007 12:46:03 +0000 (12:46 +0000)]
we added a curl_easy_setopt() option too

16 years agoPhilip Langdale provided the new CURLOPT_POST301 option for
Daniel Stenberg [Wed, 26 Sep 2007 12:44:59 +0000 (12:44 +0000)]
Philip Langdale provided the new CURLOPT_POST301 option for
curl_easy_setopt() that alters how libcurl functions when following
redirects. It makes libcurl obey the RFC2616 when a 301 response is received
after a non-GET request is made. Default libcurl behaviour is to change
method to GET in the subsequent request (like it does for response code 302
- because that's what many/most browsers do), but with this CURLOPT_POST301
option enabled it will do what the spec says and do the next request using
the same method again. I.e keep POST after 301.

The curl tool got this option as --post301

Test case 1011 and 1012 were added to verify.

16 years agoMax Katsev reported that when doing a libcurl FTP request with
Daniel Stenberg [Wed, 26 Sep 2007 12:00:01 +0000 (12:00 +0000)]
Max Katsev reported that when doing a libcurl FTP request with
CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE
before it does SIZE which makes it less useful. I walked over the code and
made it do this properly, and added test case 542 to verify it.

16 years agoMake glibc define the prototype for strcasestr
Dan Fandrich [Tue, 25 Sep 2007 17:33:56 +0000 (17:33 +0000)]
Make glibc define the prototype for strcasestr

16 years agoa new Lua binding and I shortened the wording on several bindings by cutting
Daniel Stenberg [Tue, 25 Sep 2007 08:46:49 +0000 (08:46 +0000)]
a new Lua binding and I shortened the wording on several bindings by cutting
out "written"

16 years ago#ifdef out a few more functions when SSL is disabled.
Dan Fandrich [Tue, 25 Sep 2007 06:45:05 +0000 (06:45 +0000)]
#ifdef out a few more functions when SSL is disabled.

16 years agoUse a native strcasestr() if found.
Dan Fandrich [Tue, 25 Sep 2007 06:43:58 +0000 (06:43 +0000)]
Use a native strcasestr() if found.

16 years agoImmanuel Gregoire fixed KNOWN_BUGS #44: --ftp-method nocwd did not handle
Daniel Stenberg [Mon, 24 Sep 2007 21:47:35 +0000 (21:47 +0000)]
Immanuel Gregoire fixed KNOWN_BUGS #44: --ftp-method nocwd did not handle
URLs ending with a slash properly (it should list the contents of that
directory). Test case 351 brought back and also test 1010 was added.

16 years agoBad use of "its" replaceed with a rephrase. I noticed this flaw thanks to the
Daniel Stenberg [Mon, 24 Sep 2007 10:56:26 +0000 (10:56 +0000)]
Bad use of "its" replaceed with a rephrase. I noticed this flaw thanks to the
Debian bug report http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=443734

16 years agoSteinar H. Gunderson fixed: Correctly clear sockets from the fd_set on in
Daniel Stenberg [Sat, 22 Sep 2007 21:23:10 +0000 (21:23 +0000)]
Steinar H. Gunderson fixed: Correctly clear sockets from the fd_set on in
several functions (write_tcp_data, read_tcp_data, read_udp_packets) so that
if it fails and the socket is closed the following code doesn't try to use
the file descriptor.

16 years agoSteinar H. Gunderson modified c-ares to now also do to DNS retries even when
Daniel Stenberg [Sat, 22 Sep 2007 21:04:16 +0000 (21:04 +0000)]
Steinar H. Gunderson modified c-ares to now also do to DNS retries even when
TCP is used since there are several edge cases where it still makes sense.

16 years agoBrad House provided a fix for ares_save_options(): Apparently I overlooked
Daniel Stenberg [Sat, 22 Sep 2007 20:45:50 +0000 (20:45 +0000)]
Brad House provided a fix for ares_save_options(): Apparently I overlooked
something with the ares_save_options() where it would try to do a malloc(0)
when no options of that type needed to be saved.  On most platforms, this was
fine because malloc(0) doesn't actually return NULL, but on AIX it does, so
ares_save_options would return ARES_ENOMEM.

16 years ago--proxy-negotiate is added in 7.17.1
Daniel Stenberg [Fri, 21 Sep 2007 11:53:56 +0000 (11:53 +0000)]
--proxy-negotiate is added in 7.17.1

16 years agothe NSS patch has been committed
Daniel Stenberg [Fri, 21 Sep 2007 11:19:13 +0000 (11:19 +0000)]
the NSS patch has been committed

16 years agoAvailable command line options: 119
Daniel Stenberg [Fri, 21 Sep 2007 11:08:03 +0000 (11:08 +0000)]
Available command line options: 119

16 years agoMark Davies fixed Negotiate authentication over proxy, and also introduced
Daniel Stenberg [Fri, 21 Sep 2007 11:05:31 +0000 (11:05 +0000)]
Mark Davies fixed Negotiate authentication over proxy, and also introduced
the --proxy-negotiate command line option to allow a user to explicitly
select it.

16 years agoAdded variable substitution to the <verify><file> section.
Dan Fandrich [Thu, 20 Sep 2007 20:39:17 +0000 (20:39 +0000)]
Added variable substitution to the <verify><file> section.
Made a few more tests work remotely.

16 years agoreformatted to be similar to the FAQ to make it look nicer on the site:
Daniel Stenberg [Thu, 20 Sep 2007 14:43:31 +0000 (14:43 +0000)]
reformatted to be similar to the FAQ to make it look nicer on the site:
http://curl.haxx.se/docs/contribute.html

16 years agoAchint Mehta pointed out this dead link
Daniel Stenberg [Thu, 20 Sep 2007 14:19:57 +0000 (14:19 +0000)]
Achint Mehta pointed out this dead link

16 years agothe winsock stuff is made by curl_global_init
Daniel Stenberg [Thu, 20 Sep 2007 14:05:53 +0000 (14:05 +0000)]
the winsock stuff is made by curl_global_init

16 years agofix bad link
Daniel Stenberg [Thu, 20 Sep 2007 14:05:11 +0000 (14:05 +0000)]
fix bad link

16 years agoImmanuel Gregoire is the man
Daniel Stenberg [Thu, 20 Sep 2007 14:02:34 +0000 (14:02 +0000)]
Immanuel Gregoire is the man

16 years agoFixed typo in error message.
Dan Fandrich [Thu, 20 Sep 2007 00:37:08 +0000 (00:37 +0000)]
Fixed typo in error message.

16 years agoRob Crittenden provided an NSS update with the following highlights:
Daniel Stenberg [Tue, 18 Sep 2007 22:21:54 +0000 (22:21 +0000)]
Rob Crittenden provided an NSS update with the following highlights:

o It looks for the NSS database first in the environment variable SSL_DIR,
  then in /etc/pki/nssdb, then it initializes with no database if neither of
  those exist.

o If the NSS PKCS#11 libnspsem.so driver is available then PEM files may be
  loaded, including the ca-bundle. If it is not available then only
  certificates already in the NSS database are used.

o Tries to detect whether a file or nickname is being passed in so the right
  thing is done

o Added a bit of code to make the output more like the OpenSSL module,
  including displaying the certificate information when connecting in
  verbose mode

o Improved handling of certificate errors (expired, untrusted, etc)

The libnsspem.so PKCS#11 module is currently only available in Fedora
8/rawhide. Work will be done soon to upstream it. The NSS module will work
with or without it, all that changes is the source of the certificates and
keys.

16 years agomention the prefered source code line length to be less than 80 columns
Daniel Stenberg [Tue, 18 Sep 2007 21:33:05 +0000 (21:33 +0000)]
mention the prefered source code line length to be less than 80 columns

16 years agoImmanuel pointed out that public key SSH auth failed if no public/private
Daniel Stenberg [Tue, 18 Sep 2007 21:14:28 +0000 (21:14 +0000)]
Immanuel pointed out that public key SSH auth failed if no public/private
key was specified and there was no HOME environment variable, and then it
didn't continue to try the other auth methods. Now it will instead try to
get the files id_dsa.pub and id_dsa from the current directory if none of
the two conditions were met.

16 years agoUse double quotes in command lines for consistency.
Dan Fandrich [Tue, 18 Sep 2007 20:41:20 +0000 (20:41 +0000)]
Use double quotes in command lines for consistency.

16 years agoadded a define for Win32 to detect already defined ssize_t.
Gunter Knauf [Tue, 18 Sep 2007 18:18:34 +0000 (18:18 +0000)]
added a define for Win32 to detect already defined ssize_t.

16 years agoIPv6 is a required feature for these two tests, even if it's not obvious.
Dan Fandrich [Tue, 18 Sep 2007 17:41:04 +0000 (17:41 +0000)]
IPv6 is a required feature for these two tests, even if it's not obvious.

17 years agoFixed the required server entry
Dan Fandrich [Mon, 17 Sep 2007 23:23:13 +0000 (23:23 +0000)]
Fixed the required server entry

17 years agoChanged some FTP tests to validate the format of the PORT and EPRT commands
Dan Fandrich [Mon, 17 Sep 2007 21:44:57 +0000 (21:44 +0000)]
Changed some FTP tests to validate the format of the PORT and EPRT commands
sent by curl, if not the addresses themselves.

17 years agoAdded %CLIENTIP and %CLIENT6IP data file substitution variables.
Dan Fandrich [Mon, 17 Sep 2007 21:42:01 +0000 (21:42 +0000)]
Added %CLIENTIP and %CLIENT6IP data file substitution variables.
Added hooks to the test suite to make it possible to test a curl running
on a remote host.

17 years agoAllow setting the IP address on which to listen for connections.
Dan Fandrich [Mon, 17 Sep 2007 21:39:34 +0000 (21:39 +0000)]
Allow setting the IP address on which to listen for connections.

17 years agoGünter's ldap fixes
Daniel Stenberg [Mon, 17 Sep 2007 20:43:05 +0000 (20:43 +0000)]
Günter's ldap fixes

17 years agoMake the ftp server connect to the address given by curl in the PORT/EPRT
Dan Fandrich [Mon, 17 Sep 2007 18:12:11 +0000 (18:12 +0000)]
Make the ftp server connect to the address given by curl in the PORT/EPRT
instead of hard-coding it to 127.0.0.1

17 years agoMade the directory postprocessor more forgiving of input directory format
Dan Fandrich [Mon, 17 Sep 2007 17:22:46 +0000 (17:22 +0000)]
Made the directory postprocessor more forgiving of input directory format

17 years agothree done, seven to go
Daniel Stenberg [Sat, 15 Sep 2007 22:05:20 +0000 (22:05 +0000)]
three done, seven to go

17 years agoMichal Marek made libcurl automatically append ";type=<a|i>" when using HTTP
Daniel Stenberg [Sat, 15 Sep 2007 21:14:12 +0000 (21:14 +0000)]
Michal Marek made libcurl automatically append ";type=<a|i>" when using HTTP
proxies for FTP urls.

17 years agooffer a friendlier single-line command
Daniel Stenberg [Sat, 15 Sep 2007 21:06:11 +0000 (21:06 +0000)]
offer a friendlier single-line command

17 years agofixed ldap support for winldap.
Gunter Knauf [Sat, 15 Sep 2007 20:03:03 +0000 (20:03 +0000)]
fixed ldap support for winldap.

17 years agofixed VC6 makefiles for new ldap linkage.
Gunter Knauf [Sat, 15 Sep 2007 20:02:22 +0000 (20:02 +0000)]
fixed VC6 makefiles for new ldap linkage.

17 years agoI want these CONNECT problems fixed too
Daniel Stenberg [Sat, 15 Sep 2007 08:51:42 +0000 (08:51 +0000)]
I want these CONNECT problems fixed too

17 years ago7.17.1 planned release in November 2007, and a bunch of things to deal with
Daniel Stenberg [Sat, 15 Sep 2007 08:50:04 +0000 (08:50 +0000)]
7.17.1 planned release in November 2007, and a bunch of things to deal with

17 years agoReplaced 127.0.0.1 with %HOSTIP where possible
Dan Fandrich [Fri, 14 Sep 2007 19:32:31 +0000 (19:32 +0000)]
Replaced 127.0.0.1 with %HOSTIP where possible

17 years agoAdded LDAPS, SCP and SFTP to curl-config --protocols. Removed and
Dan Fandrich [Fri, 14 Sep 2007 01:56:08 +0000 (01:56 +0000)]
Added LDAPS, SCP and SFTP to curl-config --protocols. Removed and
fixed some AC_SUBST configure entries.

17 years agoAdded LDAPS, SCP and SFTP to curl-config --protocols.
Dan Fandrich [Fri, 14 Sep 2007 01:24:59 +0000 (01:24 +0000)]
Added LDAPS, SCP and SFTP to curl-config --protocols.
Removed and fixed some AC_SUBST configure entries.

17 years agoCompile samples with -DCURL_NO_OLDIES
Dan Fandrich [Thu, 13 Sep 2007 22:20:35 +0000 (22:20 +0000)]
Compile samples with -DCURL_NO_OLDIES

17 years ago7.17.1-CVS is now the dev version
Daniel Stenberg [Thu, 13 Sep 2007 21:06:19 +0000 (21:06 +0000)]
7.17.1-CVS is now the dev version

17 years agostart over on 7.17.1
Daniel Stenberg [Thu, 13 Sep 2007 21:05:56 +0000 (21:05 +0000)]
start over on 7.17.1

17 years agoRemove remaining traces of ftp3rdparty.c and mention htmltidy.c
Dan Fandrich [Thu, 13 Sep 2007 20:36:52 +0000 (20:36 +0000)]
Remove remaining traces of ftp3rdparty.c and mention htmltidy.c

17 years agoVersion 7.17.0 (13 September 2007)
Daniel Stenberg [Thu, 13 Sep 2007 20:22:14 +0000 (20:22 +0000)]
Version 7.17.0 (13 September 2007)

17 years agoadded some further stuff from the feature-requests tracker, and a bunch of URLs
Daniel Stenberg [Thu, 13 Sep 2007 09:02:15 +0000 (09:02 +0000)]
added some further stuff from the feature-requests tracker, and a bunch of URLs
to the specific tracker entries

17 years agoTFTP error 0 is no longer treated as success
Dan Fandrich [Wed, 12 Sep 2007 18:20:52 +0000 (18:20 +0000)]
TFTP error 0 is no longer treated as success

17 years agoExtracting the CURLINFO_PRIVATE pointer makes no point since nothing set
Daniel Stenberg [Wed, 12 Sep 2007 10:46:14 +0000 (10:46 +0000)]
Extracting the CURLINFO_PRIVATE pointer makes no point since nothing set
it. This caused a segfault in some fprintf() implementations. Like on Solaris.

17 years agorephrased to mention ftp
Daniel Stenberg [Tue, 11 Sep 2007 22:37:47 +0000 (22:37 +0000)]
rephrased to mention ftp

17 years agocurl.digimirror.nl is a new mirror in Amsterdam, the Netherlands
Daniel Stenberg [Tue, 11 Sep 2007 22:36:39 +0000 (22:36 +0000)]
curl.digimirror.nl is a new mirror in Amsterdam, the Netherlands

17 years agoDaniel S (12 September 2007)
Daniel Stenberg [Tue, 11 Sep 2007 22:23:57 +0000 (22:23 +0000)]
Daniel S (12 September 2007)
- Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointed
  out a problem with doing an empty upload over FTP on a re-used connection.
  I added test case 541 to reproduce it and to verify the fix.

- I noticed while writing test 541 that the FTP code wrongly did a CWD on the
  second transfer as it didn't store and remember the "" path from the
  previous transfer so it would instead CWD to the entry path as stored. This
  worked, but did a superfluous command. Thus, test case 541 now also verifies
  this fix.

17 years ago- I noticed while writing test 541 that the FTP code wrongly did a CWD on the
Daniel Stenberg [Tue, 11 Sep 2007 22:21:39 +0000 (22:21 +0000)]
- I noticed while writing test 541 that the FTP code wrongly did a CWD on the
  second transfer as it didn't store and remember the "" path from the
  previous transfer so it would instead CWD to the entry path as stored. This
  worked, but did a superfluous command. Thus, test case 541 now also verifies
  this fix.

17 years ago- Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointed
Daniel Stenberg [Tue, 11 Sep 2007 22:21:12 +0000 (22:21 +0000)]
- Bug report #1792649 (curl.haxx.se/bug/view.cgi?id=1792649) pointed
  out a problem with doing an empty upload over FTP on a re-used connection.
  I added test case 541 to reproduce it and to verify the fix.

17 years agoA brand new binding for SP-Forth was written
Daniel Stenberg [Sun, 9 Sep 2007 22:22:45 +0000 (22:22 +0000)]
A brand new binding for SP-Forth was written

17 years agoTFTP now reports the "not defined" TFTP error code 0 as an error,
Dan Fandrich [Fri, 7 Sep 2007 20:35:37 +0000 (20:35 +0000)]
TFTP now reports the "not defined" TFTP error code 0 as an error,
not success.

17 years agoAdded test case 1007 to test permission problem when uploading with TFTP
Dan Fandrich [Fri, 7 Sep 2007 20:05:20 +0000 (20:05 +0000)]
Added test case 1007 to test permission problem when uploading with TFTP
(to validate bug #1790403).

17 years agohttp://curl.cheap.co.il is a new mirror in Tel-Aviv, Israel
Daniel Stenberg [Thu, 6 Sep 2007 21:38:50 +0000 (21:38 +0000)]
curl.cheap.co.il is a new mirror in Tel-Aviv, Israel

17 years agotwo new CONNECT response problems that have appeared
Daniel Stenberg [Thu, 6 Sep 2007 13:38:05 +0000 (13:38 +0000)]
two new CONNECT response problems that have appeared

17 years agoMinix doesn't support getsockopt on UDP sockets or send/recv on TCP
Dan Fandrich [Wed, 5 Sep 2007 22:01:57 +0000 (22:01 +0000)]
Minix doesn't support getsockopt on UDP sockets or send/recv on TCP
sockets.

17 years agoCurl_GetFTPResponse() now checks and properly deals with the fact that the
Daniel Stenberg [Wed, 5 Sep 2007 21:41:07 +0000 (21:41 +0000)]
Curl_GetFTPResponse() now checks and properly deals with the fact that the
underlying ftp_readresp() function has a separate "cache" where there might
in fact be leftover data...

17 years agoMinix doesn't support getsockopt on UDP sockets or send/recv on TCP
Dan Fandrich [Wed, 5 Sep 2007 17:22:23 +0000 (17:22 +0000)]
Minix doesn't support getsockopt on UDP sockets or send/recv on TCP
sockets.

17 years agoMinor updates
Dan Fandrich [Wed, 5 Sep 2007 17:17:59 +0000 (17:17 +0000)]
Minor updates

17 years agoI can't spell
Daniel Stenberg [Mon, 3 Sep 2007 14:10:32 +0000 (14:10 +0000)]
I can't spell

17 years agocurlpp 0.7.1 was relased
Daniel Stenberg [Mon, 3 Sep 2007 14:08:23 +0000 (14:08 +0000)]
curlpp 0.7.1 was relased

17 years agoadded some comments for MingW32 builds.
Gunter Knauf [Mon, 3 Sep 2007 11:10:46 +0000 (11:10 +0000)]
added some comments for MingW32 builds.

17 years agobash is not required when compiling under Minix
Dan Fandrich [Sat, 1 Sep 2007 21:21:52 +0000 (21:21 +0000)]
bash is not required when compiling under Minix

17 years agoRenamed the CURLE_FTP_SSL_FAILED error code to CURLE_USE_SSL_FAILED.
Dan Fandrich [Fri, 31 Aug 2007 19:36:32 +0000 (19:36 +0000)]
Renamed the CURLE_FTP_SSL_FAILED error code to CURLE_USE_SSL_FAILED.
Renamed the curl_ftpssl enum to curl_usessl and its enumerated constants,
creating macros for backward compatibility.

17 years agoMade some of the error strings returned by the *strerror functions more
Dan Fandrich [Fri, 31 Aug 2007 17:56:06 +0000 (17:56 +0000)]
Made some of the error strings returned by the *strerror functions more
generic, and more consistent with each other.

17 years agoFixed an invalid returned error code added in my last submission.
Dan Fandrich [Fri, 31 Aug 2007 17:54:01 +0000 (17:54 +0000)]
Fixed an invalid returned error code added in my last submission.

17 years agoAdded more accurate error code returns from SFTP operations. Added test
Dan Fandrich [Thu, 30 Aug 2007 23:03:59 +0000 (23:03 +0000)]
Added more accurate error code returns from SFTP operations.  Added test
case 615 to test an SFTP upload failure.

17 years agoRenamed several libcurl error codes and options to make them more general
Dan Fandrich [Thu, 30 Aug 2007 20:34:57 +0000 (20:34 +0000)]
Renamed several libcurl error codes and options to make them more general
and allow reuse by multiple protocols. Several unused error codes were
removed.  In all cases, macros were added to preserve source (and binary)
compatibility with the old names.  These macros are subject to removal at
a future date, but probably not before 2009.  An application can be
tested to see if it is using any obsolete code by compiling it with the
CURL_NO_OLDIES macro defined.

Documented some newer error codes in libcurl-error(3)

17 years agoadded --enable-ldaps switch;
Gunter Knauf [Thu, 30 Aug 2007 20:28:40 +0000 (20:28 +0000)]
added --enable-ldaps switch;
renamed LDAP(S) messages from 'yes' to 'enabled'.

17 years agoFixed a few compiler warnings. Try to do a slightly better job of
Dan Fandrich [Thu, 30 Aug 2007 18:26:19 +0000 (18:26 +0000)]
Fixed a few compiler warnings. Try to do a slightly better job of
cleaning up after an OOM condition in curl_multi_add_handle

17 years agoMade Curl_GetFTPResponse() use lots less code and instead use the proper
Daniel Stenberg [Thu, 30 Aug 2007 14:06:00 +0000 (14:06 +0000)]
Made Curl_GetFTPResponse() use lots less code and instead use the proper
low-level ftp_readresp() function. Hopefully adressing bug #1779054.

17 years agoAdded lots of consts
Dan Fandrich [Wed, 29 Aug 2007 05:36:53 +0000 (05:36 +0000)]
Added lots of consts

17 years agoMention that 'make test' does more than just run all the tests (suggested
Dan Fandrich [Tue, 28 Aug 2007 18:23:19 +0000 (18:23 +0000)]
Mention that 'make test' does more than just run all the tests (suggested
by Kris/tinker105 in bug #1779054) and mention the torture tests.

17 years agoFixed some minor type mismatches and missing consts mainly found by splint.
Dan Fandrich [Mon, 27 Aug 2007 06:31:28 +0000 (06:31 +0000)]
Fixed some minor type mismatches and missing consts mainly found by splint.

17 years agoFixed some minor mismatched types found by splint.
Dan Fandrich [Sun, 26 Aug 2007 05:53:26 +0000 (05:53 +0000)]
Fixed some minor mismatched types found by splint.

17 years agobail out with error if someone tries to use another cert than PEM with OpenLDAP.
Gunter Knauf [Sat, 25 Aug 2007 12:10:30 +0000 (12:10 +0000)]
bail out with error if someone tries to use another cert than PEM with OpenLDAP.

17 years agoonly link with -lwldap32 if we dont use other LDAP SDKs.
Gunter Knauf [Sat, 25 Aug 2007 12:08:38 +0000 (12:08 +0000)]
only link with -lwldap32 if we dont use other LDAP SDKs.

17 years agoadded defines to build with OpenLDAP.
Gunter Knauf [Fri, 24 Aug 2007 17:08:49 +0000 (17:08 +0000)]
added defines to build with OpenLDAP.

17 years agoAdding DOCS file in OS400 installation library with license and various other documen...
Patrick Monnerat [Fri, 24 Aug 2007 15:56:59 +0000 (15:56 +0000)]
Adding DOCS file in OS400 installation library with license and various other documentation text files.
Setting character set of OS400 installed source components

17 years agoBug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed
Daniel Stenberg [Fri, 24 Aug 2007 14:00:42 +0000 (14:00 +0000)]
Bug report #1779054 (curl.haxx.se/bug/view.cgi?id=1779054) pointed
out that libcurl didn't deal with large responses from server commands, when
the single response was consisting of multiple lines but of a total size of
16KB or more. Dan Fandrich improved the ftp test script and provided test
case 1006 to repeat the problem, and I fixed the code to make sure this new
test case runs fine.

17 years agoRemove leading space in curl_version_info ss_version field.
Patrick Monnerat [Fri, 24 Aug 2007 09:06:17 +0000 (09:06 +0000)]
Remove leading space in curl_version_info ss_version field.

17 years agoAdded test case 1005 to test excessively-long replies spread out over
Dan Fandrich [Thu, 23 Aug 2007 23:25:47 +0000 (23:25 +0000)]
Added test case 1005 to test excessively-long replies spread out over
multiple lines (similar to test case 1003).

17 years agoAllow ftp server alternate replies to contain backslash-escaped control
Dan Fandrich [Thu, 23 Aug 2007 23:24:39 +0000 (23:24 +0000)]
Allow ftp server alternate replies to contain backslash-escaped control
characters.

17 years agoMake ldap.h, gssapi.h and qsossl.h inclusions conditional.
Patrick Monnerat [Thu, 23 Aug 2007 18:46:45 +0000 (18:46 +0000)]
Make ldap.h, gssapi.h and qsossl.h inclusions conditional.

17 years agoNeed even more time to wait for an accept.
Dan Fandrich [Thu, 23 Aug 2007 18:45:28 +0000 (18:45 +0000)]
Need even more time to wait for an accept.

17 years agoAdded test1004 to validate a previous fix for a memory leak when an
Dan Fandrich [Thu, 23 Aug 2007 17:35:00 +0000 (17:35 +0000)]
Added test1004 to validate a previous fix for a memory leak when an
empty proxy server is selected.

17 years agoMention OS/400 and TPF
Dan Fandrich [Thu, 23 Aug 2007 17:26:42 +0000 (17:26 +0000)]
Mention OS/400 and TPF

17 years agoported to OS/400
Daniel Stenberg [Thu, 23 Aug 2007 15:00:55 +0000 (15:00 +0000)]
ported to OS/400

17 years agoadded the two new os400 files
Daniel Stenberg [Thu, 23 Aug 2007 14:58:10 +0000 (14:58 +0000)]
added the two new os400 files