]> git.ipfire.org Git - thirdparty/curl.git/log
thirdparty/curl.git
24 years agoconst-ified the code, removed Curl_ldap_done()
Daniel Stenberg [Tue, 14 Aug 2001 08:30:43 +0000 (08:30 +0000)] 
const-ified the code, removed Curl_ldap_done()

24 years agofixed picky compiler warnings, unused arguments, const at proper places and
Daniel Stenberg [Tue, 14 Aug 2001 08:30:08 +0000 (08:30 +0000)] 
fixed picky compiler warnings, unused arguments, const at proper places and
I also indented the source code to fit curl "standard"

24 years agoCurl_httpchunk_read now takes size_t size arguments instead of the previous
Daniel Stenberg [Tue, 14 Aug 2001 08:29:09 +0000 (08:29 +0000)] 
Curl_httpchunk_read now takes size_t size arguments instead of the previous
ssize_t

24 years agomade some char * into const char * and I removed the check for size > 0
Daniel Stenberg [Tue, 14 Aug 2001 08:28:15 +0000 (08:28 +0000)] 
made some char * into const char * and I removed the check for size > 0
in the add_buffer function.

24 years agoadded const to the prompt char * in the proto
Daniel Stenberg [Tue, 14 Aug 2001 08:27:07 +0000 (08:27 +0000)] 
added const to the prompt char * in the proto

24 years agoadded typecast when converting const char * to char *
Daniel Stenberg [Tue, 14 Aug 2001 08:26:20 +0000 (08:26 +0000)] 
added typecast when converting const char * to char *

24 years agoadded const to the function protos
Daniel Stenberg [Tue, 14 Aug 2001 08:25:47 +0000 (08:25 +0000)] 
added const to the function protos

24 years agoCurl_ftpsendf's third argument is now a const char *
Daniel Stenberg [Tue, 14 Aug 2001 08:25:08 +0000 (08:25 +0000)] 
Curl_ftpsendf's third argument is now a const char *

24 years agocorrected the size_t weirdness. Expect size_t to be unsigned. Moved most
Daniel Stenberg [Tue, 14 Aug 2001 08:24:37 +0000 (08:24 +0000)] 
corrected the size_t weirdness. Expect size_t to be unsigned. Moved most
over to ssize_t that is signed. Removed all the special-purpose VMS #ifdefs
that were added for this.

24 years agoadded a few consts and a few typecasts to please picky compiler options
Daniel Stenberg [Tue, 14 Aug 2001 08:23:20 +0000 (08:23 +0000)] 
added a few consts and a few typecasts to please picky compiler options

24 years agosize_t => ssize_t, removed the special VMS fix for that purpose
Daniel Stenberg [Tue, 14 Aug 2001 08:22:27 +0000 (08:22 +0000)] 
size_t => ssize_t, removed the special VMS fix for that purpose

24 years agoadded typecasts when converting from unsigned int to int
Daniel Stenberg [Tue, 14 Aug 2001 08:20:17 +0000 (08:20 +0000)] 
added typecasts when converting from unsigned int to int

24 years agoAdded an empty win32_cleanup for non-windows systems to prevent compiler
Daniel Stenberg [Tue, 14 Aug 2001 08:19:40 +0000 (08:19 +0000)] 
Added an empty win32_cleanup for non-windows systems to prevent compiler
warnings, changed the Curl_open() call as the second argument was never
used anyway

24 years agoremoved the *done() function as it served no purpose, added type casts when
Daniel Stenberg [Tue, 14 Aug 2001 08:18:35 +0000 (08:18 +0000)] 
removed the *done() function as it served no purpose, added type casts when
converting from 'const char *' to 'char *' to please my picky compiler
options

24 years agocommented out empty else blocks to shut up pedantic compilers
Daniel Stenberg [Tue, 14 Aug 2001 08:17:29 +0000 (08:17 +0000)] 
commented out empty else blocks to shut up pedantic compilers

24 years agoAdded 'const' to the string arrays
Daniel Stenberg [Tue, 14 Aug 2001 08:16:53 +0000 (08:16 +0000)] 
Added 'const' to the string arrays

24 years agocorrected dubious use of the same variable twice in a function call,
Daniel Stenberg [Tue, 14 Aug 2001 06:06:15 +0000 (06:06 +0000)] 
corrected dubious use of the same variable twice in a function call,
gcc 3.0 warned about it

24 years agocurl_formparse() should no longer have any size-limit in the data section
Daniel Stenberg [Mon, 13 Aug 2001 06:33:26 +0000 (06:33 +0000)] 
curl_formparse() should no longer have any size-limit in the data section
after this patch from Peter Todd

24 years agocorrected minor source indentation error
Daniel Stenberg [Fri, 10 Aug 2001 14:10:19 +0000 (14:10 +0000)] 
corrected minor source indentation error

24 years agomoved the download/upload speed calculations, to be made on every invoke
Daniel Stenberg [Fri, 10 Aug 2001 06:24:49 +0000 (06:24 +0000)] 
moved the download/upload speed calculations, to be made on every invoke
of the progressupdate, as on very quick transfers they wouldn't always get
calculated!

24 years agoFixed bugs for building debug and SSL lib in VC makefile
sm [Thu, 9 Aug 2001 22:43:43 +0000 (22:43 +0000)] 
Fixed bugs for building debug and SSL lib in VC makefile

24 years agoAdded CURLOPT_HTTPGET and CURLOPT_SSL_VERIFYHOST, added notes to the two
Daniel Stenberg [Thu, 9 Aug 2001 12:08:23 +0000 (12:08 +0000)] 
Added CURLOPT_HTTPGET and CURLOPT_SSL_VERIFYHOST, added notes to the two
timeout-options that they don't work in multi-threaded programs.

24 years agonon-blocking connect please
Daniel Stenberg [Thu, 9 Aug 2001 12:04:16 +0000 (12:04 +0000)] 
non-blocking connect please

24 years agostrip off user-agent before checking protocol
Daniel Stenberg [Thu, 9 Aug 2001 11:58:56 +0000 (11:58 +0000)] 
strip off user-agent before checking protocol

24 years agoThe redirected error stream was closed before curl_easy_cleanup() was made,
Daniel Stenberg [Thu, 9 Aug 2001 09:47:53 +0000 (09:47 +0000)] 
The redirected error stream was closed before curl_easy_cleanup() was made,
and when VERBOSE was enabled, that used the stream. Also, the stream was
closed even if we looped to get more files.
Corrects Dustin Boswell's bug report #441610

24 years agoremovied $Id:$ again, this is treated as a binary file and then that field
Daniel Stenberg [Thu, 9 Aug 2001 09:13:36 +0000 (09:13 +0000)] 
removied $Id:$ again, this is treated as a binary file and then that field
isn't updated! :-O

24 years agoAdded $Id:$ to the header
Daniel Stenberg [Thu, 9 Aug 2001 09:10:36 +0000 (09:10 +0000)] 
Added $Id:$ to the header

24 years agoAdded $Id:$ string for file version in the header
Daniel Stenberg [Thu, 9 Aug 2001 09:10:13 +0000 (09:10 +0000)] 
Added $Id:$ string for file version in the header

24 years agowhen a test expects an error code but gets a different one, we now output
Daniel Stenberg [Wed, 8 Aug 2001 07:51:00 +0000 (07:51 +0000)] 
when a test expects an error code but gets a different one, we now output
both of them

24 years agoNico's notes about porting to VMS
Daniel Stenberg [Wed, 8 Aug 2001 07:50:14 +0000 (07:50 +0000)] 
Nico's notes about porting to VMS

24 years agotest cases, verifyhost, curl -E
Daniel Stenberg [Wed, 8 Aug 2001 07:49:00 +0000 (07:49 +0000)] 
test cases, verifyhost, curl -E

24 years agoadded unfortunate but necessary special-purpose files for VMS and RISC OS
Daniel Stenberg [Wed, 8 Aug 2001 07:46:44 +0000 (07:46 +0000)] 
added unfortunate but necessary special-purpose files for VMS and RISC OS

24 years agoThe file name given to -E can now contain drive letters on windows, if they
Daniel Stenberg [Wed, 8 Aug 2001 07:35:57 +0000 (07:35 +0000)] 
The file name given to -E can now contain drive letters on windows, if they
start the file name as in 'X:\' where X is any letter. The colon otherwise
normally separate the file name from the password.

24 years agocredit where credit is due, added a bunch of recent contributors
Daniel Stenberg [Wed, 8 Aug 2001 07:23:23 +0000 (07:23 +0000)] 
credit where credit is due, added a bunch of recent contributors

24 years agoPatrick Bihan-Faou introduced CURLOPT_SSL_VERIFYHOST and code to deal with
Daniel Stenberg [Wed, 8 Aug 2001 07:16:47 +0000 (07:16 +0000)] 
Patrick Bihan-Faou introduced CURLOPT_SSL_VERIFYHOST and code to deal with
it.

24 years agoPatrick Bihan-Faou's verifyhost addition
Daniel Stenberg [Wed, 8 Aug 2001 07:15:00 +0000 (07:15 +0000)] 
Patrick Bihan-Faou's verifyhost addition

24 years agoconfig.h file for RISC OS compiles
Daniel Stenberg [Wed, 8 Aug 2001 06:05:06 +0000 (06:05 +0000)] 
config.h file for RISC OS compiles

24 years agoscript to build curl on VMS
Daniel Stenberg [Wed, 8 Aug 2001 06:04:34 +0000 (06:04 +0000)] 
script to build curl on VMS

24 years agoreplacing FILE * with common file descriptors?
Daniel Stenberg [Tue, 7 Aug 2001 21:36:07 +0000 (21:36 +0000)] 
replacing FILE * with common file descriptors?

24 years agolanguage correction
Daniel Stenberg [Tue, 7 Aug 2001 21:21:24 +0000 (21:21 +0000)] 
language correction

24 years agoadded Rick Jones's more polite wording of 1.7, makes it better and friendlier
Daniel Stenberg [Tue, 7 Aug 2001 18:02:37 +0000 (18:02 +0000)] 
added Rick Jones's more polite wording of 1.7, makes it better and friendlier

24 years agonine new test cases
Daniel Stenberg [Tue, 7 Aug 2001 12:42:23 +0000 (12:42 +0000)] 
nine new test cases

24 years agoadded "1.7 What about CURL from curl.com?"
Daniel Stenberg [Tue, 7 Aug 2001 11:17:37 +0000 (11:17 +0000)] 
added  "1.7 What about CURL from curl.com?"

24 years agotest 202 - two file:// URLs in one command line
Daniel Stenberg [Tue, 7 Aug 2001 09:21:30 +0000 (09:21 +0000)] 
test 202 - two file:// URLs in one command line

24 years agoadded test 201, file:// with missing file
Daniel Stenberg [Tue, 7 Aug 2001 09:16:49 +0000 (09:16 +0000)] 
added test 201, file:// with missing file

24 years agoVMS fixes, file:// changes, curl-config --libs patch
Daniel Stenberg [Mon, 6 Aug 2001 13:44:36 +0000 (13:44 +0000)] 
VMS fixes, file:// changes, curl-config --libs patch

24 years agoHeikki Korpela posted a patch that makes --libs include the directory in
Daniel Stenberg [Mon, 6 Aug 2001 13:35:58 +0000 (13:35 +0000)] 
Heikki Korpela posted a patch that makes --libs include the directory in
which libcurl itself is installed in.

24 years agoNico's VMS fixes added
Daniel Stenberg [Mon, 6 Aug 2001 13:19:43 +0000 (13:19 +0000)] 
Nico's VMS fixes added

24 years agoAdded curlmsg.msg to the distribution
Daniel Stenberg [Mon, 6 Aug 2001 13:18:34 +0000 (13:18 +0000)] 
Added curlmsg.msg to the distribution

24 years agoused under VMS
Daniel Stenberg [Mon, 6 Aug 2001 13:18:06 +0000 (13:18 +0000)] 
used under VMS

24 years agoNico's fixes for VMS, most of these are fixes for bad uses of size_t that
Daniel Stenberg [Mon, 6 Aug 2001 12:47:39 +0000 (12:47 +0000)] 
Nico's fixes for VMS, most of these are fixes for bad uses of size_t that
forgets that it is very often unsigned. These should be fixed globally and
then many #ifdef VMS lines can be removed.

24 years agoCurl_FormFree renamed to Curl_formclean, as it turns out VMS for example
Daniel Stenberg [Mon, 6 Aug 2001 12:36:18 +0000 (12:36 +0000)] 
Curl_FormFree renamed to Curl_formclean, as it turns out VMS for example
requires all global symbols to be *case insentively* unique! curl_formfree
is a global function we shouldn't touch.

24 years agoadjusted for VMS
Daniel Stenberg [Mon, 6 Aug 2001 12:27:28 +0000 (12:27 +0000)] 
adjusted for VMS

24 years agoNico's config.h for VMS
Daniel Stenberg [Mon, 6 Aug 2001 12:26:27 +0000 (12:26 +0000)] 
Nico's config.h for VMS

24 years agoNico's VMS fixes
Daniel Stenberg [Mon, 6 Aug 2001 12:24:22 +0000 (12:24 +0000)] 
Nico's VMS fixes

24 years agoNico's VMS adjustment
Daniel Stenberg [Mon, 6 Aug 2001 12:23:31 +0000 (12:23 +0000)] 
Nico's VMS adjustment

24 years agoVMS adjustments. The IOCTL_3_ARGS #define used now should be moved to become
Daniel Stenberg [Mon, 6 Aug 2001 12:22:48 +0000 (12:22 +0000)] 
VMS adjustments. The IOCTL_3_ARGS #define used now should be moved to become
a configure checked one.

24 years agoNico Baggus made it work and compile under VMS!
Daniel Stenberg [Mon, 6 Aug 2001 12:20:28 +0000 (12:20 +0000)] 
Nico Baggus made it work and compile under VMS!

24 years agoNico Baggus' VMS adjustments
Daniel Stenberg [Mon, 6 Aug 2001 12:19:26 +0000 (12:19 +0000)] 
Nico Baggus' VMS adjustments

24 years agoVMS #ifdefs added. several related to size_t problems that we must address
Daniel Stenberg [Mon, 6 Aug 2001 12:17:43 +0000 (12:17 +0000)] 
VMS #ifdefs added. several related to size_t problems that we must address
globally anyway... check these as soon as the size_t fixes are in place

24 years agomade this whole file #ifdef WIN32
Daniel Stenberg [Mon, 6 Aug 2001 12:16:19 +0000 (12:16 +0000)] 
made this whole file #ifdef WIN32

24 years agoVMS #include fixes,
Daniel Stenberg [Mon, 6 Aug 2001 12:14:53 +0000 (12:14 +0000)] 
VMS #include fixes,
file:// URL treatment improvements

24 years agoadjusted to the correct treatmeant of file:// URLs
Daniel Stenberg [Mon, 6 Aug 2001 12:10:00 +0000 (12:10 +0000)] 
adjusted to the correct treatmeant of file:// URLs

24 years agoAdded RISC OS and OpenVMS to ported operating systems
Daniel Stenberg [Mon, 6 Aug 2001 10:09:43 +0000 (10:09 +0000)] 
Added RISC OS and OpenVMS to ported operating systems

24 years ago7.8.1-pre3 commit curl-7_8_1-pre3
Daniel Stenberg [Mon, 6 Aug 2001 08:43:37 +0000 (08:43 +0000)] 
7.8.1-pre3 commit

24 years ago Jonathan Hseu noticed that you couldn't get a header callback unless you
Daniel Stenberg [Mon, 6 Aug 2001 08:22:26 +0000 (08:22 +0000)] 
  Jonathan Hseu noticed that you couldn't get a header callback unless you
  set CURLOPT_WRITEHEADER to non-NULL, even if you didn't care about that
  data. This is now fixed.

24 years agocorrected the comment for CURLOPT_WRITEHEADER in setopt(), and made it
Daniel Stenberg [Mon, 6 Aug 2001 08:18:15 +0000 (08:18 +0000)] 
corrected the comment for CURLOPT_WRITEHEADER in setopt(), and made it
read a void * and not a FILE *, as that was how it used to work and not
anymore...

24 years agomany fixes mailed in during July
Daniel Stenberg [Sun, 5 Aug 2001 13:00:40 +0000 (13:00 +0000)] 
many fixes mailed in during July

24 years agocurl_escape() no longer attempts to detect already encoded stuff (in order
Daniel Stenberg [Sun, 5 Aug 2001 12:34:07 +0000 (12:34 +0000)] 
curl_escape() no longer attempts to detect already encoded stuff (in order
not to re-encode it).

24 years ago- Sergio Ballestrero provided a patch for reading responses from NCSA httpd
Daniel Stenberg [Sun, 5 Aug 2001 12:30:57 +0000 (12:30 +0000)] 
- Sergio Ballestrero provided a patch for reading responses from NCSA httpd
  1.5.x servers, as they return really screwed up response headers when asked
  for with HTTP 1.1.

24 years ago-G or similar to make -d data get into a GET
Daniel Stenberg [Sat, 4 Aug 2001 14:42:41 +0000 (14:42 +0000)] 
-G or similar to make -d data get into a GET

24 years agocomplete rewrite to avoid the BSD license in the previous version
Daniel Stenberg [Fri, 3 Aug 2001 15:11:28 +0000 (15:11 +0000)] 
complete rewrite to avoid the BSD license in the previous version

24 years agoclarified '-d @filename' with a tiny example
Daniel Stenberg [Fri, 3 Aug 2001 14:06:25 +0000 (14:06 +0000)] 
clarified '-d @filename' with a tiny example

24 years agofixed the header that wrongly was the krb4-style one
Daniel Stenberg [Fri, 3 Aug 2001 13:52:06 +0000 (13:52 +0000)] 
fixed the header that wrongly was the krb4-style one

24 years agoAndrew Francis base64 decode, my previous base64 encoder, new source header.
Daniel Stenberg [Fri, 3 Aug 2001 13:51:44 +0000 (13:51 +0000)] 
Andrew Francis base64 decode, my previous base64 encoder, new source header.
No BSD-style license.

24 years agoadded CURLOPT_HTTPGET
Daniel Stenberg [Fri, 3 Aug 2001 11:53:16 +0000 (11:53 +0000)] 
added CURLOPT_HTTPGET

24 years agohttpreq cleanup fix
Daniel Stenberg [Fri, 3 Aug 2001 11:52:53 +0000 (11:52 +0000)] 
httpreq cleanup fix

24 years agohttpsserver.pl added to release archive
Daniel Stenberg [Fri, 3 Aug 2001 06:39:00 +0000 (06:39 +0000)] 
httpsserver.pl added to release archive

24 years agoFunny, I skipped right over this before.
Sterling Hughes [Thu, 2 Aug 2001 17:29:08 +0000 (17:29 +0000)] 
Funny, I skipped right over this before.

everyting -> everything

24 years agomanual fix, select() loop fix, progress callback fix
Daniel Stenberg [Thu, 2 Aug 2001 17:25:33 +0000 (17:25 +0000)] 
manual fix, select() loop fix, progress callback fix

24 years agoFrank Keeney pointed out a manual mistake for certificate convertions
Daniel Stenberg [Thu, 2 Aug 2001 17:12:07 +0000 (17:12 +0000)] 
Frank Keeney pointed out a manual mistake for certificate convertions

24 years ago"Add an interface that enables a user to select prefered SSL ciphers to use."
Daniel Stenberg [Thu, 2 Aug 2001 17:08:24 +0000 (17:08 +0000)] 
"Add an interface that enables a user to select prefered SSL ciphers to use."

Rob Styles posted the question, as he could've used this...

24 years agodon't do final newline output when using progress callback
Daniel Stenberg [Thu, 2 Aug 2001 17:05:11 +0000 (17:05 +0000)] 
don't do final newline output when using progress callback

24 years agoFD_ZERO() the keepfd variables properly when keepon is modified (Tomasz Lacki
Daniel Stenberg [Thu, 2 Aug 2001 16:52:12 +0000 (16:52 +0000)] 
FD_ZERO() the keepfd variables properly when keepon is modified (Tomasz Lacki
reported 12 Jul 2001)

24 years agoLeftover -- add a note about this in the examples file :)
Sterling Hughes [Thu, 12 Jul 2001 02:00:24 +0000 (02:00 +0000)] 
Leftover -- add a note about this in the examples file :)

24 years agoAdd win32 initialization support to curl_global_init() and
Sterling Hughes [Thu, 12 Jul 2001 01:57:28 +0000 (01:57 +0000)] 
Add win32 initialization support to curl_global_init() and
curl_global_cleanup().  Update corresponding man pages...

Improve the logic in curl_global_cleanup() and curl_global_init() so that
they are not called twice if the application libraries have been
initialized and make sure to reset the init flags in curl_global_cleanup().

24 years agoborland makefile fix
Daniel Stenberg [Mon, 2 Jul 2001 09:23:50 +0000 (09:23 +0000)] 
borland makefile fix

24 years agoadded more ideas that've been floating around lately
Daniel Stenberg [Mon, 2 Jul 2001 08:21:25 +0000 (08:21 +0000)] 
added more ideas that've been floating around lately

24 years agoremoved the "change test suite" item, as that is already made
Daniel Stenberg [Mon, 2 Jul 2001 07:04:16 +0000 (07:04 +0000)] 
removed the "change test suite" item, as that is already made

24 years agoAdded an item about the cookie jar stuff, contains a link to the dev file
Daniel Stenberg [Mon, 2 Jul 2001 07:02:47 +0000 (07:02 +0000)] 
Added an item about the cookie jar stuff, contains a link to the dev file
about this subject

24 years agoremoved static, removed curl special return type, added include windows.h
Daniel Stenberg [Fri, 29 Jun 2001 11:33:00 +0000 (11:33 +0000)] 
removed static, removed curl special return type, added include windows.h

24 years agoadded strtok.c as a source file
Daniel Stenberg [Fri, 29 Jun 2001 11:18:27 +0000 (11:18 +0000)] 
added strtok.c as a source file

24 years agoNic Roets brought a fix for the certificate verification when using SSL.
Daniel Stenberg [Fri, 29 Jun 2001 07:38:11 +0000 (07:38 +0000)] 
Nic Roets brought a fix for the certificate verification when using SSL.

24 years agoadded test 43
Daniel Stenberg [Thu, 28 Jun 2001 13:25:28 +0000 (13:25 +0000)] 
added test 43

24 years agoHTTP Location: following over HTTP proxy
Daniel Stenberg [Thu, 28 Jun 2001 13:24:19 +0000 (13:24 +0000)] 
HTTP Location: following over HTTP proxy

24 years agonow runs ok on IPv6 enabled hosts
Daniel Stenberg [Wed, 27 Jun 2001 22:04:00 +0000 (22:04 +0000)] 
now runs ok on IPv6 enabled hosts

24 years agonow does OK even on IPv6-enabled hosts
Daniel Stenberg [Wed, 27 Jun 2001 22:01:37 +0000 (22:01 +0000)] 
now does OK even on IPv6-enabled hosts

24 years agobetter strip
Daniel Stenberg [Wed, 27 Jun 2001 22:01:08 +0000 (22:01 +0000)] 
better strip

24 years agomultiple file transfers with resume fix
Daniel Stenberg [Mon, 25 Jun 2001 12:58:19 +0000 (12:58 +0000)] 
multiple file transfers with resume fix

24 years ago'resume from'-fix. When using "-C -" and doing multiple file download, the
Daniel Stenberg [Mon, 25 Jun 2001 12:56:06 +0000 (12:56 +0000)] 
'resume from'-fix. When using "-C -" and doing multiple file download, the
first resume was used on all files instead of being reset between each file.
As found by Björn Stenberg.