platform/upstream/curl.git
12 years agocurl tool: code moved to tool_*.[ch] files
Yang Tse [Tue, 4 Oct 2011 22:03:20 +0000 (00:03 +0200)]
curl tool: code moved to tool_*.[ch] files

12 years agocurl_share_cleanup: avoid compiler warning
Daniel Stenberg [Tue, 4 Oct 2011 14:34:45 +0000 (16:34 +0200)]
curl_share_cleanup: avoid compiler warning

Move the variable declaration to within the #ifdef

12 years agostruct Curl_share: provide sslsession unconditionally
Daniel Stenberg [Tue, 4 Oct 2011 14:33:07 +0000 (16:33 +0200)]
struct Curl_share: provide sslsession unconditionally

It makes much nicer and less convuluted code everywhere if this struct
member is always present even when libcurl is built without SSL support.

This reverts parts of commit 15e3e451702396e

12 years agoftp: improved the failed PORT host name resolved error message
Daniel Stenberg [Tue, 4 Oct 2011 14:24:50 +0000 (16:24 +0200)]
ftp: improved the failed PORT host name resolved error message

12 years agocodepolicing
Daniel Stenberg [Mon, 3 Oct 2011 21:04:32 +0000 (23:04 +0200)]
codepolicing

12 years agosspi build fix
Daniel Stenberg [Mon, 3 Oct 2011 21:03:59 +0000 (23:03 +0200)]
sspi build fix

define away Curl_ntlm_sspi_cleanup() when no windows SSPI build

12 years agosmtp: Added support for NTLM authentication
Steve Holme [Sat, 1 Oct 2011 13:46:14 +0000 (14:46 +0100)]
smtp: Added support for NTLM authentication

Modified smtp_endofresp() to detect NTLM from the server specified list
of supported authentication mechanisms.

Modified smtp_authenticate() to start the sending of the NTLM data.

Added smtp_auth_ntlm_type1_message() which creates a NTLM type-1
message. This function is used by authenticate() to start the sending
of data and by smtp_state_auth_ntlm_resp() when the AUTH command
doesn't contain the type-1 message as part of the initial response.
This lack of initial response can happen if an OOM error occurs or the
type-1 message is longer than 504 characters. As the main AUTH command
is limited to 512 character the data has to be transmitted in two
parts; one containing the AUTH NTLM and the second containing the
type-1 message.

Added smtp_state_auth_ntlm_type2msg_resp() which handles the incoming
type-2 message and sends an outgoing type-3 message. This type-2
message is sent by the server in response to our type-1 message.

Modified smtp_state_auth_resp() to handle the response to: the AUTH
NTLM without the initial response and the type-2 response.

Modified smtp_disconnect() to cleanup the NTLM SSPI stack.

12 years agoCurl_ntlm_create_typeX_message: Added the outlen parameter
Steve Holme [Sat, 1 Oct 2011 12:03:40 +0000 (13:03 +0100)]
Curl_ntlm_create_typeX_message: Added the outlen parameter

Added the output message length as a parameter to both
Curl_ntlm_create_type1_message() and Curl_ntlm_create_type3_message()
for use by future functions that require it.

Updated curl_ntlm.c to cater for the extra parameter on these two
functions.

12 years agosmtp: General tidy up ready for adding NTLM support
Steve Holme [Sat, 1 Oct 2011 11:35:36 +0000 (12:35 +0100)]
smtp: General tidy up ready for adding NTLM support

Changed the name of variable l, in several functions, which represents
the length of strings being sent to the server, to len which is more
meaningful and consistent with other code in smtp.c and elsewhere.

Reworked smtp_authenticate() to be simpler and easier to follow.
Variables and now initialised in their definitions and if no username
and password are specified the function sets the state to SMTP_STOP and
returns immediately, rather than being part of a huge if statement.

12 years agocurl tool: reviewed code moved to tool_*.[ch] files
Yang Tse [Mon, 3 Oct 2011 20:59:38 +0000 (22:59 +0200)]
curl tool: reviewed code moved to tool_*.[ch] files

12 years agosmtp_mail: fixed another memory leak
Steve Holme [Fri, 30 Sep 2011 09:11:56 +0000 (10:11 +0100)]
smtp_mail: fixed another memory leak

... introduced in 7f304ab84f560c

12 years agom4: Use x in order to avoid variable 'x' set but not used [-Werror=unused-but-set...
Dominique Leuenberger [Mon, 3 Oct 2011 15:53:43 +0000 (17:53 +0200)]
m4: Use x in order to avoid variable 'x' set but not used [-Werror=unused-but-set-variable]

This error could be caused by configure scripts being run with -Werror
-Wall, which would lead to libcurl being detected as unusable.

12 years agoshare: don't use SSL unless enabled
Daniel Stenberg [Mon, 3 Oct 2011 20:32:36 +0000 (22:32 +0200)]
share: don't use SSL unless enabled

Don't even declare the struct members for disabled features

Introducing the CURLSHE_NOT_BUILT_IN return code for the share interface
when trying to set a sharing option that has been disabled (or not
enabled) in the library.

12 years agomulti: progress function abort must close connection
Daniel Stenberg [Sun, 2 Oct 2011 17:28:39 +0000 (19:28 +0200)]
multi: progress function abort must close connection

When the progress function returns to cancel the request, we must mark
the connection to get closed and it must do to the DONE state.

do_init() must be called as early as possible so that state variables
for new connections are reset early. We could otherwise see that the old
values were still there when a connection was to be disconnected very
early and it would make it behave wrongly.

Bug: http://curl.haxx.se/mail/lib-2011-10/0006.html
Reported by: Vladimir Grishchenko

12 years agotutorial: clarify the handle sharing when treaded
Daniel Stenberg [Fri, 30 Sep 2011 21:42:47 +0000 (23:42 +0200)]
tutorial: clarify the handle sharing when treaded

Previously there was wording that made people uncertain of the exact
rules.

Feedback by: Julien Royer and Georg Lippitsch
URL: http://curl.haxx.se/mail/lib-2011-09/0357.html

12 years agomulti_runsingle: change state on callback abort
Daniel Stenberg [Fri, 30 Sep 2011 20:59:50 +0000 (22:59 +0200)]
multi_runsingle: change state on callback abort

Reported by: Marcin Adamski
Bug: http://curl.haxx.se/mail/lib-2011-09/0329.html

12 years agocurl tool: fix some more OOM handling
Yang Tse [Fri, 30 Sep 2011 18:56:56 +0000 (20:56 +0200)]
curl tool: fix some more OOM handling

12 years agoFix SSL disabled builds broken with 'SSL session sharing' commit 5793bc37
Yang Tse [Fri, 30 Sep 2011 19:09:59 +0000 (21:09 +0200)]
Fix SSL disabled builds broken with 'SSL session sharing' commit 5793bc37

12 years agosmtp_mail: fix memory leak
Daniel Stenberg [Thu, 29 Sep 2011 21:45:36 +0000 (23:45 +0200)]
smtp_mail: fix memory leak

... introduced in 7f304ab84f560c

12 years agosmtp_mail: Added support to MAIL FROM for the optional SIZE parameter
Steve Holme [Mon, 26 Sep 2011 13:07:54 +0000 (14:07 +0100)]
smtp_mail: Added support to MAIL FROM for the optional SIZE parameter

The size of the email can now be set via CURLOPT_INFILESIZE. This
allows the email to be rejected by the server, if supported, and the
maximum size has been configured on the server.

12 years agocurlverh.h: next release will be 7.23.0
Daniel Stenberg [Thu, 29 Sep 2011 06:52:47 +0000 (08:52 +0200)]
curlverh.h: next release will be 7.23.0

12 years agoRELEASE-NOTES: synced with 5898a6a09b211fc7e2
Daniel Stenberg [Thu, 29 Sep 2011 06:51:52 +0000 (08:51 +0200)]
RELEASE-NOTES: synced with 5898a6a09b211fc7e2

Bumped next release version to become 7.23.0 for the changes

12 years agocurl_easy_setopt: Added scp and sftp to the URL section
Dan Fandrich [Thu, 29 Sep 2011 04:33:42 +0000 (21:33 -0700)]
curl_easy_setopt: Added scp and sftp to the URL section

12 years agocurl_easy_setopt: A brief tidy up
Steve Holme [Thu, 22 Sep 2011 18:47:45 +0000 (19:47 +0100)]
curl_easy_setopt: A brief tidy up

Slight rewording of the CURLOPT_URL SMTP sub-section.

Corrected the incorrect use of hyphens on the three uses of
"zero-terminated" with "zero terminated" to match the rest of the
document.

Corrected the use of an out of place hyphen in CURLOPT_NOPROXY section.

12 years agoconfigure openssl version check: handle lack of L suffix
Daniel Stenberg [Wed, 28 Sep 2011 21:09:46 +0000 (23:09 +0200)]
configure openssl version check: handle lack of L suffix

It seems some versions of the OpenSSL version defines don't come with L
appended to the number, so let's deal with that nicely.

12 years agoSSL session sharing support added
Alejandro Alvarez [Tue, 20 Sep 2011 15:43:54 +0000 (17:43 +0200)]
SSL session sharing support added

With locking, plus test, plus documentation

12 years agocurl tool: adjust header callback single call write limit warning
Yang Tse [Wed, 28 Sep 2011 17:03:36 +0000 (19:03 +0200)]
curl tool: adjust header callback single call write limit warning

Maximum amount of data a header callback is supposed to get in
a single call from libcurl is limited by the lowest value of
CURL_MAX_WRITE_SIZE and CURL_MAX_HTTP_HEADER.

12 years agomulti docs: extended the multi_socket API description
Daniel Stenberg [Wed, 28 Sep 2011 11:53:59 +0000 (13:53 +0200)]
multi docs: extended the multi_socket API description

12 years agotests/README: extended and reformatted
Daniel Stenberg [Tue, 27 Sep 2011 20:13:40 +0000 (22:13 +0200)]
tests/README: extended and reformatted

12 years agoconfigure - m4: make CURL_CHECK_DEF ignore leading whitespace on symbol def
Albert Chin [Tue, 27 Sep 2011 19:59:18 +0000 (21:59 +0200)]
configure - m4: make CURL_CHECK_DEF ignore leading whitespace on symbol def

When using Sun C compiler the preprocessor somehow inserts an extra space
in front of replaced symbol, breaking CURL_CHECK_DEF macro. To workaround
this, macro CURL_CHECK_DEF now ignores all leading whitespace in front of
symbol substitution result.

12 years agoAdded SPNEGO to NetWare build.
Guenter Knauf [Tue, 27 Sep 2011 14:01:36 +0000 (16:01 +0200)]
Added SPNEGO to NetWare build.

12 years agocurl tool: fix a compiler warning
Yang Tse [Mon, 26 Sep 2011 19:19:41 +0000 (21:19 +0200)]
curl tool: fix a compiler warning

12 years agocurl tool: fix some OOM handling - f4853db5 follow-up
Yang Tse [Mon, 26 Sep 2011 11:44:24 +0000 (13:44 +0200)]
curl tool: fix some OOM handling - f4853db5 follow-up

12 years agocurl tool: fix some OOM handling
Yang Tse [Mon, 26 Sep 2011 11:07:34 +0000 (13:07 +0200)]
curl tool: fix some OOM handling

12 years agoremove short-lived CURL_WRITEFUNC_OUT_OF_MEMORY
Yang Tse [Mon, 26 Sep 2011 01:18:51 +0000 (03:18 +0200)]
remove short-lived CURL_WRITEFUNC_OUT_OF_MEMORY

12 years agoAdded unsigned char* to _curl_is_debug_cb.
Guenter Knauf [Mon, 26 Sep 2011 10:42:15 +0000 (12:42 +0200)]
Added unsigned char* to _curl_is_debug_cb.

12 years agosmtp_connect: use defined buffer length for hostname
Steve Holme [Sun, 25 Sep 2011 22:01:09 +0000 (00:01 +0200)]
smtp_connect: use defined buffer length for hostname

12 years agoCurl_ntlm_create_type3_message: Tidied up the use of Curl_gethostname.
Steve Holme [Mon, 19 Sep 2011 19:55:56 +0000 (20:55 +0100)]
Curl_ntlm_create_type3_message: Tidied up the use of Curl_gethostname.

Removed the code that striped off the domain name when Curl_gethostname
returned the fully qualified domain name as the function has been
updated to return the un-qualified host name.

Replaced the use of HOSTNAME_MAX as the size of the buffer in the call
to Curl_gethostname with sizeof(host) as this is safer should the buffer
size ever be changed.

12 years agoHOSTNAME_MAX: Moved to curl_gethostname.h
Steve Holme [Sun, 25 Sep 2011 21:58:47 +0000 (23:58 +0200)]
HOSTNAME_MAX: Moved to curl_gethostname.h

Moved HOSTNAME_MAX #define into curl_gethostname.h rather than being
locally defined in curl_gethostname.c, curl_ntlm_msgs.c and smtp.c.

12 years agoRELEASE-NOTES: synced with d2a47021c0a6
Daniel Stenberg [Sun, 25 Sep 2011 21:20:46 +0000 (23:20 +0200)]
RELEASE-NOTES: synced with d2a47021c0a6

12 years agoQ&D fix header inclusion order
Yang Tse [Sun, 25 Sep 2011 17:08:12 +0000 (19:08 +0200)]
Q&D fix header inclusion order

12 years agoallow write callbacks to indicate OOM to libcurl
Yang Tse [Sun, 25 Sep 2011 16:53:29 +0000 (18:53 +0200)]
allow write callbacks to indicate OOM to libcurl

Allow (*curl_write_callback) write callbacks to return
CURL_WRITEFUNC_OUT_OF_MEMORY to properly indicate libcurl of OOM conditions
inside the callback itself.

12 years agoChanged some main makefile targets.
Guenter Knauf [Sun, 25 Sep 2011 15:42:20 +0000 (17:42 +0200)]
Changed some main makefile targets.

12 years agocurl_multi_fdset: avoid FD_SET out of bounds
Daniel Stenberg [Sun, 25 Sep 2011 15:34:12 +0000 (17:34 +0200)]
curl_multi_fdset: avoid FD_SET out of bounds

If a socket is larger than FD_SETSIZE, avoid using FD_SET() on the
platforms where this is possible.

Bug: http://curl.haxx.se/bug/view.cgi?id=3413274
Reported by: Tim Starling

12 years agoFixed MinGW examples makefile.
Guenter Knauf [Sun, 25 Sep 2011 14:31:31 +0000 (16:31 +0200)]
Fixed MinGW examples makefile.

12 years agoNetWare makefile tweaks to select different builds.
Guenter Knauf [Sun, 25 Sep 2011 14:29:08 +0000 (16:29 +0200)]
NetWare makefile tweaks to select different builds.

12 years agoPOST: always set postfieldsize
Daniel Stenberg [Sat, 24 Sep 2011 22:02:58 +0000 (00:02 +0200)]
POST: always set postfieldsize

When we use binary posts and regular ones intermixed on a single command
line, we cannot do strlen() etc on the data to figure out the length
(when inserting '&' and more). We must therefore keep track of the post
data length. Then we also end up setting the libcurl option with the
known size, so that we don't risk that libcurl will do strlen() on the
data.

This has the minor side-effect that --libcurl source codes now always
will use CURLOPT_POSTFIELDSIZE but I don't consider that terribly
damaging.

Bug: http://curl.haxx.se/bug/view.cgi?id=3413181
Reported by: Taneli Vähäkangas

12 years agocurl tool: fix a compiler warning
Yang Tse [Sat, 24 Sep 2011 16:33:59 +0000 (18:33 +0200)]
curl tool: fix a compiler warning

12 years agocurl tool: reviewed code moved to tool_*.[ch] files
Yang Tse [Sat, 24 Sep 2011 15:38:16 +0000 (17:38 +0200)]
curl tool: reviewed code moved to tool_*.[ch] files

12 years agoAdded header to be included by dist script.
Guenter Knauf [Sat, 24 Sep 2011 13:06:21 +0000 (15:06 +0200)]
Added header to be included by dist script.

Probably the wrong place, but I dont know better.

12 years agocurl tool: fix some OOM handling issues
Yang Tse [Sat, 24 Sep 2011 03:32:51 +0000 (05:32 +0200)]
curl tool: fix some OOM handling issues

12 years agohttp header: allow Content-Length to be replaced
Daniel Stenberg [Fri, 23 Sep 2011 22:05:58 +0000 (00:05 +0200)]
http header: allow Content-Length to be replaced

In some cases Content-Length: couldn't be replaced by an application

Also, indented some code properly

12 years agoMinGW64 has this prototype already.
Guenter Knauf [Fri, 23 Sep 2011 01:56:34 +0000 (03:56 +0200)]
MinGW64 has this prototype already.

12 years agoFixed scanf format for WORD = unsigned short.
Guenter Knauf [Fri, 23 Sep 2011 01:21:50 +0000 (03:21 +0200)]
Fixed scanf format for WORD = unsigned short.

12 years agoAdded Win32-only samples.
Guenter Knauf [Fri, 23 Sep 2011 01:00:32 +0000 (03:00 +0200)]
Added Win32-only samples.

12 years agoAdded a workaround for printing size_t.
Guenter Knauf [Thu, 22 Sep 2011 23:22:18 +0000 (01:22 +0200)]
Added a workaround for printing size_t.

12 years agoCurl_pgrsStartNow: keep HEADERS_OUT set
Daniel Stenberg [Thu, 22 Sep 2011 20:34:54 +0000 (22:34 +0200)]
Curl_pgrsStartNow: keep HEADERS_OUT set

To avoid that the progress meter headers get output between each
transfer, make sure the bits gets kept when (re-)inited.

Reported by: Christopher Stone

12 years agocurl tool: fix some OOM handling issues
Yang Tse [Thu, 22 Sep 2011 19:20:28 +0000 (21:20 +0200)]
curl tool: fix some OOM handling issues

12 years agocurl tool: reviewed code moved to tool_*.[ch] files
Yang Tse [Thu, 22 Sep 2011 09:16:34 +0000 (11:16 +0200)]
curl tool: reviewed code moved to tool_*.[ch] files

my_setopt and my_setopt_str no longer ignores curl_easy_setopt result.

Fixed some OOM handling issues.

12 years agoAdded NetWare examples makefile.
Guenter Knauf [Thu, 22 Sep 2011 12:34:58 +0000 (14:34 +0200)]
Added NetWare examples makefile.

12 years agoNTLM_WB: fix disabling of NTLM_WB when NTLM is disabled
Yang Tse [Wed, 21 Sep 2011 22:24:02 +0000 (00:24 +0200)]
NTLM_WB: fix disabling of NTLM_WB when NTLM is disabled

12 years agotest 814: smtp without --mail-from
Daniel Stenberg [Wed, 21 Sep 2011 20:32:27 +0000 (22:32 +0200)]
test 814: smtp without --mail-from

Verifies the fix from commit 322f3d5af7093

12 years agosmtp: without a MAIL_FROM, send blank MAIL FROM
Gisle Vanem [Wed, 21 Sep 2011 20:24:45 +0000 (22:24 +0200)]
smtp: without a MAIL_FROM, send blank MAIL FROM

I think curl should ignore this case and smtp.c should test for this.
Since RFC-2821 seems to allow a "null reverse-path". Ref.  "MAIL
FROM:<>" in section 3.7, page 25.

12 years agolib/http: add missing whitespace in verbose output
Dave Reisner [Wed, 21 Sep 2011 19:19:29 +0000 (21:19 +0200)]
lib/http: add missing whitespace in verbose output

Example:
* upload completely sent off: 35out of 35 bytes

Should be:
* upload completely sent off: 35 out of 35 bytes

12 years agoAnother MinGW example makefile tweak.
Guenter Knauf [Wed, 21 Sep 2011 16:21:05 +0000 (18:21 +0200)]
Another MinGW example makefile tweak.

12 years agoFixed sample to compile for Windows platform.
Guenter Knauf [Wed, 21 Sep 2011 16:09:34 +0000 (18:09 +0200)]
Fixed sample to compile for Windows platform.

12 years agocurl tool: make my_setopt ignore curl_easy_setopt result again.
Yang Tse [Wed, 21 Sep 2011 02:28:46 +0000 (04:28 +0200)]
curl tool: make my_setopt ignore curl_easy_setopt result again.

Related code not ready yet for this kind of checks.

12 years agoChanged suffix rules to pattern rules.
Guenter Knauf [Wed, 21 Sep 2011 01:25:19 +0000 (03:25 +0200)]
Changed suffix rules to pattern rules.

Suffix rules cannot have any prerequisites of their own.

12 years agoAdded dependency so that curlbuild.h is created.
Guenter Knauf [Wed, 21 Sep 2011 00:13:18 +0000 (02:13 +0200)]
Added dependency so that curlbuild.h is created.

12 years agoSome more MinGW build tweaks.
Guenter Knauf [Wed, 21 Sep 2011 00:02:31 +0000 (02:02 +0200)]
Some more MinGW build tweaks.

Added envvars to specify OpenSSL include, libpath and lib.
Added rule to create curlbuild.h from curlbuild.h.dist.

12 years agocurl tool: reviewed code moved to tool_*.[ch] files
Yang Tse [Tue, 20 Sep 2011 23:54:14 +0000 (01:54 +0200)]
curl tool: reviewed code moved to tool_*.[ch] files

my_setopt and my_setopt_str no longer ignores curl_easy_setopt result.

Fixed some OOM handling issues.

12 years agocurl tool: reviewed code moved to tool_*.[ch] files
Yang Tse [Tue, 20 Sep 2011 13:58:35 +0000 (15:58 +0200)]
curl tool: reviewed code moved to tool_*.[ch] files

Overhauled FindWin32CACert()

12 years agoA bunch of MinGW build tweaks.
Guenter Knauf [Tue, 20 Sep 2011 13:05:28 +0000 (15:05 +0200)]
A bunch of MinGW build tweaks.

All paths to dependencies now quoted; synced examples makefile.

12 years agoChanged Windows 64bit OS define to x86_64.
Guenter Knauf [Tue, 20 Sep 2011 10:32:04 +0000 (12:32 +0200)]
Changed Windows 64bit OS define to x86_64.

Also added check for __x86_64__ define since MinGW64 seems to define
the _M_X64 macro through a header not available for config-win32.h.

12 years agoAlso skip certs masked as CKT_NSS_TRUST_UNKNOWN.
Guenter Knauf [Tue, 20 Sep 2011 10:05:31 +0000 (12:05 +0200)]
Also skip certs masked as CKT_NSS_TRUST_UNKNOWN.

Fix posted by Tomas Hoger <thoger redhat com>.

12 years agoAdded _WIN32_WINNT define for IPv6 builds.
Guenter Knauf [Tue, 20 Sep 2011 09:59:10 +0000 (11:59 +0200)]
Added _WIN32_WINNT define for IPv6 builds.

12 years agoCurl_follow: handle redirects to "//hostname/path"
Daniel Stenberg [Tue, 20 Sep 2011 09:13:32 +0000 (11:13 +0200)]
Curl_follow: handle redirects to "//hostname/path"

12 years agocurl tool: truly fix compiler warning
Yang Tse [Mon, 19 Sep 2011 18:27:25 +0000 (20:27 +0200)]
curl tool: truly fix compiler warning

12 years agocurl tool: fix compiler warning
Yang Tse [Mon, 19 Sep 2011 17:45:58 +0000 (19:45 +0200)]
curl tool: fix compiler warning

12 years agocurl tool: reviewed code moved to tool_*.[ch] files
Yang Tse [Mon, 19 Sep 2011 16:18:17 +0000 (18:18 +0200)]
curl tool: reviewed code moved to tool_*.[ch] files

12 years agoCURLOPT_URL docs: no need to mention function names
Daniel Stenberg [Sun, 18 Sep 2011 21:42:29 +0000 (23:42 +0200)]
CURLOPT_URL docs: no need to mention function names

12 years agoCURLOPT_URL: Expanded URL description
Steve Holme [Sun, 18 Sep 2011 13:16:13 +0000 (14:16 +0100)]
CURLOPT_URL: Expanded URL description

Expanded the section about CURLOPT_URL to include the format of the URL
and detailed information and examples relating to specific protocols.

12 years agoCurl_gethostname: return un-qualified machine name
Steve Holme [Tue, 13 Sep 2011 21:19:47 +0000 (22:19 +0100)]
Curl_gethostname: return un-qualified machine name

Fixed Curl_gethostname() so that it always returns the un-qualified
machine name rather than being dependent on the socket provider.

Note: The return of getenv("CURL_GETHOSTNAME") is also parsed in case
the developer / test harness provided a fully qualified domain name as
it's value as well.

12 years agocurl tool: create tool_myfunc.[ch] which later on will hold my_* functions
Yang Tse [Sat, 17 Sep 2011 23:58:18 +0000 (01:58 +0200)]
curl tool: create tool_myfunc.[ch] which later on will hold my_* functions

Additionally function my_useragent() now provides default User-Agent string

12 years agocurl tool: reorder free_config_fields() field handling
Yang Tse [Sat, 17 Sep 2011 12:09:36 +0000 (14:09 +0200)]
curl tool: reorder free_config_fields() field handling

Reorder handling of fields to match same order as the one given by current
definition order of 'Configurable' struct fields. Fields currently not handled
marked for further inspection.

12 years agoFixed MinGW WinIDN lib dependency.
Guenter Knauf [Sat, 17 Sep 2011 15:59:35 +0000 (17:59 +0200)]
Fixed MinGW WinIDN lib dependency.

12 years agotool_convert.c: fix no newline at end of file
Yang Tse [Sat, 17 Sep 2011 01:28:57 +0000 (03:28 +0200)]
tool_convert.c: fix no newline at end of file

12 years agocurl tool: add new files to Symbian's .mmp project file
Yang Tse [Fri, 16 Sep 2011 19:55:13 +0000 (21:55 +0200)]
curl tool: add new files to Symbian's .mmp project file

12 years agocurl tool: move 'Configurable' and free_config_fields() to tool_cfgable.[ch]
Yang Tse [Fri, 16 Sep 2011 19:44:45 +0000 (21:44 +0200)]
curl tool: move 'Configurable' and free_config_fields() to tool_cfgable.[ch]

Reviewing fields being free'd in free_config_fields() still pending

12 years agosrc/setup.h: add conditional include of assert.h
Yang Tse [Fri, 16 Sep 2011 19:12:32 +0000 (21:12 +0200)]
src/setup.h: add conditional include of assert.h

12 years agocurl tool: move so called 'multi_files' stuff into tool_mfiles.[ch]
Yang Tse [Fri, 16 Sep 2011 17:46:01 +0000 (19:46 +0200)]
curl tool: move so called 'multi_files' stuff into tool_mfiles.[ch]

Additionally some code reorganization and direct OOM handling fixes,
just another step towards fixing curl tool issues uncovered 2011-09-15

12 years agocurl tool: move convert_* functions into tool_convert.[ch]
Yang Tse [Fri, 16 Sep 2011 13:31:29 +0000 (15:31 +0200)]
curl tool: move convert_* functions into tool_convert.[ch]

Additionally fix data type of result vars for iconv() calls

12 years agomain.c: convert GetStr() into a macro to ease leak debugging
Yang Tse [Thu, 15 Sep 2011 22:57:54 +0000 (00:57 +0200)]
main.c: convert GetStr() into a macro to ease leak debugging

12 years agomain.c: de-obfuscate a couple for-loop exit conditions
Yang Tse [Thu, 15 Sep 2011 22:36:21 +0000 (00:36 +0200)]
main.c: de-obfuscate a couple for-loop exit conditions

12 years agocurl tool: fix a bunch of double free's uncovered 2011-09-15
Yang Tse [Thu, 15 Sep 2011 18:03:30 +0000 (20:03 +0200)]
curl tool: fix a bunch of double free's uncovered 2011-09-15

Re-enabling MemoryTracking capability on 'src' subdirectory files and torture
tests have uncovered many issues which were going unnoticed in curl tool. So
here we go fixing some of them. Others still remain and should be addressed
ASAP, given that curl tool is used in our test harness also for test server
start verification purposes. There are even non-socket file descriptor leaks.

12 years agoMake Curl_safefree() macro assign NULL to given pointer when free'd
Yang Tse [Thu, 15 Sep 2011 15:35:23 +0000 (17:35 +0200)]
Make Curl_safefree() macro assign NULL to given pointer when free'd

12 years agocurl MSVC project files: adjust resource compiler include path
Yang Tse [Thu, 15 Sep 2011 09:40:54 +0000 (11:40 +0200)]
curl MSVC project files: adjust resource compiler include path

12 years agosrc/Makefile.vc6: adjust resource compiler include path
Yang Tse [Wed, 14 Sep 2011 18:31:23 +0000 (20:31 +0200)]
src/Makefile.vc6: adjust resource compiler include path

12 years agocurl tool: re-enable MemoryTracking capability on 'src' subdirectory files.
Yang Tse [Wed, 14 Sep 2011 09:27:12 +0000 (11:27 +0200)]
curl tool: re-enable MemoryTracking capability on 'src' subdirectory files.

Use same preprocessor logic for curl tool MemoryTracking activation in source
files located in 'src' subdirectory as the one used for libcurl sources.

12 years agoftp.c: add a couple of failure messages
Yang Tse [Wed, 14 Sep 2011 08:36:29 +0000 (10:36 +0200)]
ftp.c: add a couple of failure messages