Daniel Stenberg
a434cb43e8
- I made the SMTP code expect a 250 response back from the server after the
...
full DATA has been sent, and I modified the test SMTP server to also send
that response. As usual, the DONE operation that is made after a completed
transfer is still not doable in a non-blocking way so this waiting for 250
is unfortunately made blockingly.
2010-02-20 21:56:48 +00:00
Daniel Stenberg
846b926a3f
corected a comment and wrapped a few longish lines
2010-02-20 21:41:25 +00:00
Yang Tse
f0d3930346
fix compiler warning
2010-02-20 19:51:02 +00:00
Yang Tse
a6fb6b70c7
fix compiler warning
2010-02-20 11:58:26 +00:00
Yang Tse
2179ef9fa9
fix compiler warning
2010-02-20 01:15:10 +00:00
Yang Tse
048438345a
fix compiler warning
2010-02-19 18:02:38 +00:00
Daniel Stenberg
23bab783d4
use curl standard indentation and line lengths
2010-02-17 12:13:55 +00:00
Yang Tse
46b112bcd4
replaced tabs with spaces
2010-02-16 13:32:45 +00:00
Yang Tse
4b43d18c4a
fix compiler warning: conversion from "long" to "size_t" may lose sign
2010-02-15 16:18:52 +00:00
Yang Tse
a07bc79117
removed trailing whitespace
2010-02-14 19:40:18 +00:00
Gunter Knauf
68b73bcfba
used allways #ifdef / #ifndef;
...
moved gethostbyname_thread() to #else case to avoid 'not used' compiler warning.
2010-02-13 18:39:47 +00:00
Gunter Knauf
ac04add596
replaced tabs by spaces, removed trailing tabs/spaces.
2010-02-13 18:29:59 +00:00
Daniel Stenberg
975814368a
- Jack Zhang reported a problem with SMTP: we wrongly used multiple addresses
...
in the same RCPT TO line, when they should be sent in separate single
commands. I updated test case 802 to verify this.
- I also fixed a bad use of my_setopt_str() of CURLOPT_MAIL_RCPT in the curl
tool which made it try to output it as string for the --libcurl feature
which could lead to crashes.
2010-02-12 22:23:46 +00:00
Patrick Monnerat
4258e943a1
_ Make it compilable again on OS400.
...
_ Upgrade OS400 EBCDIC wrappers for new options.
_ Upgrade ILE/RPG bindings to current state.
2010-02-11 18:49:06 +00:00
Daniel Stenberg
06ae8ca5a6
- When downloading compressed content over HTTP and the app as asked libcurl
...
to automatically uncompress it with the CURLOPT_ENCODING option, libcurl
could wrongly provide the callback with more data than what the maximum
documented amount. An application could thus get tricked into badness if the
maximum limit was trusted to be enforced by libcurl itself (as it is
documented).
This is further detailed and explained in the libcurl security advisory
20100209 at
http://curl.haxx.se/docs/adv_20100209.html
2010-02-09 09:35:48 +00:00
Daniel Stenberg
d33da42334
set VERSIONINFO accordingly for the 7.20.0 release
2010-02-09 09:35:07 +00:00
Yang Tse
71593dfe57
OOM handling fix
2010-02-06 17:30:06 +00:00
Yang Tse
0f4a91afde
OOM handling fix
2010-02-06 13:21:45 +00:00
Yang Tse
12d01bc5f7
- avoid OpenSSL 0.9.8 ENGINE_by_id memory leak
...
- cleanup parenthesis usage in return statements
2010-02-05 09:33:36 +00:00
Yang Tse
bc7615ae2d
- attempt to workaround icc 9.1 optimizer issue
2010-02-05 09:32:11 +00:00
Yang Tse
7aef172a34
fix printf-style format strings
2010-02-04 19:44:31 +00:00
Yang Tse
15efa262bb
Fix compiler warning: unused variable
2010-02-04 10:08:39 +00:00
Dan Fandrich
680434f313
Changed the Watcom makefiles to make them easier to keep in sync with
...
Makefile.inc since that can't be included directly.
2010-02-03 23:07:11 +00:00
Yang Tse
b77d0db59e
Fix OOM handling
2010-02-03 13:28:47 +00:00
Yang Tse
381a4d6efe
Fix portability issue related with unaligned memory access
2010-02-03 06:49:27 +00:00
Yang Tse
f6d288a397
Fix compiler warnings: conversion from 'const int ' to 'unsigned char ', possible loss of data
2010-02-03 06:44:18 +00:00
Yang Tse
d1717e7c90
Fix compiler warning: conditional expression is constant
2010-02-02 16:25:07 +00:00
Yang Tse
e569ff959f
Fix compiler warning: local variable may be used without having been initialized.
2010-02-02 16:23:42 +00:00
Yang Tse
839b61c32a
Fix compiler warnings: conversion from 'const int ' to 'unsigned char ', possible loss of data
2010-02-02 16:23:01 +00:00
Yang Tse
46de140aca
Fix compiler warning: variable was set but never used
...
Simplify preprocessor symbol checking
2010-02-02 09:15:52 +00:00
Daniel Stenberg
17a2c32ca9
Julien Chaffraix pointed out a comment mistake, and I re-indented the code
...
slightly while editing
2010-02-02 08:48:58 +00:00
Yang Tse
35e220606d
Conroy's fix to make the code match with the RTP documentation regarding
...
writing out the whole header. The docs say it writes the whole header,
but the code (before this patch) did not write out the leading $.
2010-02-01 22:13:55 +00:00
Daniel Stenberg
55f1e787f3
We introduce a loop in lib/multi.c around all calls to multi_runsingle() and
...
simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added
benefit that this goes in line with my long-term wishes to get rid of the
CURLM_CALL_MULTI_PERFORM all together from the public API.
2010-02-01 21:42:44 +00:00
Yang Tse
715e3a806f
Make Curl_pop3_write() additionally truncate trailing POP3_EOB from received
...
string buffer, otherwise Curl_client_write() call with zero size would write
to the end of string buffer including matched POP3_EOB.
2010-01-30 05:22:30 +00:00
Yang Tse
6ebd71d186
WIN32 fix, _beginthreadex() may return either 0 or -1L upon failure
2010-01-29 17:47:54 +00:00
Yang Tse
4ee4e66c4f
fix errno usage for WIN32 builds
2010-01-29 16:38:43 +00:00
Yang Tse
fce02e1cab
RTSP followup fix. Both the pipelined and non-pipelined case need to
...
check for (excess > 0 && !k->ignorebody).
2010-01-29 01:16:23 +00:00
Yang Tse
d65cf7889b
fix printf-style format strings
2010-01-28 15:34:18 +00:00
Yang Tse
3e21f1e971
fix printf-style format strings
2010-01-28 07:52:12 +00:00
Yang Tse
2f3bce1193
Chris Conroy's RTSP followup fixes
2010-01-28 01:39:16 +00:00
Yang Tse
bbefdf88fd
fix compiler warning
2010-01-27 03:43:34 +00:00
Daniel Stenberg
c82a1f95eb
- Mike Crowe made libcurl return CURLE_COULDNT_RESOLVE_PROXY when it is the
...
proxy that cannot be resolved when using c-ares. This matches the behaviour
when not using c-ares.
2010-01-26 22:59:43 +00:00
Daniel Stenberg
9bc897f380
Andre Guibert de Bruet improved the libssh2 error code translation
2010-01-26 12:25:03 +00:00
Yang Tse
9b0e57b0f7
resolver selection for non-configure Windows builds, default is threaded DNS
2010-01-26 12:13:39 +00:00
Yang Tse
1d86ebfc88
add curl_threads.c to non-configure target build files
2010-01-26 09:20:09 +00:00
Yang Tse
a9b860765d
onstantine Sapuntzakis threaded resolver enhancements
2010-01-26 08:43:21 +00:00
Yang Tse
483ff1ca75
Constantine Sapuntzakis threaded resolver enhancements
2010-01-25 23:50:13 +00:00
Yang Tse
c054b8bfa7
Constantine Sapuntzakis provided initial thread abstraction layer
2010-01-25 23:46:27 +00:00
Yang Tse
340ab2f87f
make Curl_handler_*_proxy definition static
2010-01-25 23:41:02 +00:00
Yang Tse
4bb80cfd75
fix compiler warning
2010-01-25 04:36:13 +00:00
Daniel Stenberg
de2cc11a73
Julien Chaffraix corrected bad #elif lines to silence warnings
2010-01-24 22:44:10 +00:00
Yang Tse
c656098ee0
HAVE_GETADDRINFO_THREADSAFE definition for non-configure win32 builds
2010-01-24 01:13:47 +00:00
Yang Tse
0abd928d3d
add inclusion of curl_memory.h
2010-01-23 17:31:54 +00:00
Yang Tse
597ad5a2ce
adjust preprocessor symbol definition check relative to resolver specialty
2010-01-23 13:53:33 +00:00
Dan Fandrich
ec4647c0f9
Include "curl_memory.h" to get the strdup replacement when necessary
2010-01-23 10:04:04 +00:00
Daniel Stenberg
33ce0ec1f1
wrap long lines and do some indent policing
2010-01-22 23:21:39 +00:00
Yang Tse
1435864030
Definitions of resolver specialty compile-time defines CURLRES_* moved
...
from hostip.h to setup.h in order to allow proper inclusion in any file.
This represents no functional change at all in which resolver is used,
everything still works as usual, internally and externally there is no
difference in behavior.
2010-01-22 20:27:48 +00:00
Yang Tse
6636fbf238
deal with the possibility that CURL_DISABLE_RTSP may already be defined
2010-01-22 15:15:08 +00:00
Yang Tse
c94d44505f
fix compiler warning: statement is unreachable
2010-01-22 14:21:28 +00:00
Yang Tse
0032ce762e
fix compilation when http is disabled
2010-01-22 14:20:56 +00:00
Yang Tse
bdb338b3c7
disabling of rtsp when http isn't enabled required here for non-configure systems
2010-01-22 14:20:08 +00:00
Daniel Stenberg
099eed7bf1
wrap long lines, remove (very old) attribution from code
2010-01-22 13:52:35 +00:00
Daniel Stenberg
a771fb0d41
alphabetically sort the list of supported protocols
2010-01-22 13:06:50 +00:00
Daniel Stenberg
844c19cc5b
s/RTPFUNCTION/INTERLEAVEFUNCTION/
...
s/RTPDATA/INTERLEAVEDATA/
2010-01-22 12:17:03 +00:00
Yang Tse
bfc4c33985
Constantine Sapuntzakis refactoring of async callbacks, allowing
...
removal of Curl_addrinfo_copy(), Curl_addrinfo6_callback(), and
Curl_addrinfo4_callback()
2010-01-22 06:36:52 +00:00
Dan Fandrich
5af20c70e4
Added rtsp.c to the non-configure target build files
2010-01-21 22:03:26 +00:00
Yang Tse
bd7430c1ee
fix compiler warning
2010-01-21 19:27:32 +00:00
Yang Tse
6e5acc2fc1
make tftp_translate_code() static, it is only used from within tftp.c
2010-01-21 14:44:28 +00:00
Daniel Stenberg
bc4582b68a
Chris Conroy brought support for RTSP transfers, and with it comes 8(!) new
...
libcurl options for controlling what to get and how to receive posssibly
interleaved RTP data. Initial commit.
2010-01-21 13:58:30 +00:00
Daniel Stenberg
877dad1e24
- As was pointed out on the http-state mailing list, the order of cookies in a
...
HTTP Cookie: header _needs_ to be sorted on the path length in the cases
where two cookies using the same name are set more than once using
(overlapping) paths. Realizing this, identically named cookies must be
sorted correctly. But detecting only identically named cookies and take care
of them individually is harder than just to blindly and unconditionally sort
all cookies based on their path lengths. All major browsers also already do
this, so this makes our behavior one step closer to them in the cookie area.
Test case 8 was the only one that broke due to this change and I updated it
accordingly.
2010-01-19 23:19:59 +00:00
Daniel Stenberg
a5ca3f1754
- David McCreedy brought a fix and a new test case (129) to make libcurl work
...
again when downloading files over FTP using ASCII and it turns out that the
final size of the file is not the same as the initial size the server
reported. This is very common since servers don't take the newline
conversions into account.
2010-01-19 21:39:10 +00:00
Yang Tse
afdc3d81e9
update copyright year notice
2010-01-19 01:30:07 +00:00
Yang Tse
ccfe279117
Constantine Sapuntzakis enhancements to make memory tracking log file writing
...
of messages atomic, on systems where an fwrite of a memory buffer is atomic.
2010-01-18 20:22:04 +00:00
Yang Tse
b992928f3d
Store now this file in CVS with unix line endings.
...
maketgz already converts this file to DOS style with an awk filter.
2010-01-15 20:23:35 +00:00
Dan Fandrich
a644af129e
Added the new protocol source files to the non-autoconf build files
2010-01-15 06:33:46 +00:00
Daniel Stenberg
d17416190b
ssh_statemach_act() is now modified to loop over the switch() to perform as
...
much as possible in one go, as long as it doesn't block and hasn't reached the
end of the state machine.
This avoids spurious -1 returns from curl_multi_fdset() simply because
previously it would return from this function without anything in EWOUDLBLOCK
and thus basically it wasn't actually waiting for anything!!
2010-01-11 23:10:53 +00:00
Daniel Stenberg
2158e234aa
After the TCP connect is confirmed in CURLM_STATE_WAITCONNECT and it changes
...
state, we return CURLM_CALL_MULTI_PERFORM unconditionally then so that we
can act faster like in the case the protocol-specific connect doesn't block
on anything and we can just persue on the next action immediately. It also
then avoids a case where curl_multi_fdset() would return -1.
2010-01-11 23:05:35 +00:00
Daniel Stenberg
377b2db05b
- Made sure that the progress callback is repeatedly called at a regular
...
interval even during very slow connects.
2010-01-11 21:38:13 +00:00
Daniel Stenberg
b90703f594
struct Curl_sh_entry's 'inuse' member was no longer used and is now removed
2010-01-09 00:03:33 +00:00
Daniel Stenberg
552c3de357
- Johan van Selst found and fixed a OpenSSL session ref count leak:
...
ossl_connect_step3() increments an SSL session handle reference counter on
each call. When sessions are re-used this reference counter may be
incremented many times, but it will be decremented only once when done (by
Curl_ossl_session_free()); and the internal OpenSSL data will not be freed
if this reference count remains positive. When a session is re-used the
reference counter should be corrected by explicitly calling
SSL_SESSION_free() after each consecutive SSL_get1_session() to avoid
introducing a memory leak.
(http://curl.haxx.se/bug/view.cgi?id=2926284 )
2010-01-08 23:45:23 +00:00
Daniel Stenberg
8524c04ca9
removed a parameter from the Curl_http_readwrite_headers() prototype to remove
...
the need for the struct forward declaration from http.h which caused problems
with gcc 2.96 and quite frankly the parameter wasn't necessary anyway
2010-01-07 22:48:28 +00:00
Daniel Stenberg
d37a9c4f87
removed Curl_http_header_append() prototype as it isn't used anymore, the
...
function was moved to http.c and was made static and renamed
2010-01-07 14:02:05 +00:00
Daniel Stenberg
88944eb13a
- Make sure the progress callback is called repeatedly even during very slow
...
name resolves when c-ares is used for resolving.
2010-01-06 23:04:17 +00:00
Claes Jakobsson
9bd03483ce
Julien Chaffraix fixed so that the fragment part in an URL is not sent to the server anymore
2010-01-06 16:01:48 +00:00
Kamil Dudka
fd903eb6be
- Julien Chaffraix eliminated a duplicated initialization in singlesocket().
2010-01-03 13:46:37 +00:00
Daniel Stenberg
a62f32d3c2
update copyright year since we are in 2010 now
2010-01-01 14:52:50 +00:00
Daniel Stenberg
605bbfc4c0
- Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. This
...
command is a special "hack" used by the drftpd server, but even though it is
a custom extension I've deemed it fine to add to libcurl since this server
seems to survive and people keep using it and want libcurl to support
it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also
usable from the curl tool with --ftp-pret. Using this option on a server
that doesn't support this command will make libcurl fail.
2010-01-01 14:44:44 +00:00
Daniel Stenberg
3f3f6be825
turned CURLOPT_MAIL_RCPT into a curl_slist list instead to support multiple
...
receivers, and made the command line tool thus support the option specified
many times
2009-12-31 21:52:01 +00:00
Daniel Stenberg
6c6dc3f879
modified to get the EHLO domain from the path part of the URL instead of the
...
user name
2009-12-30 22:50:42 +00:00
Daniel Stenberg
a1311e5a24
moved the SMTP payload escape function into Curl_smtp_escape_eob and put
...
it in smtp.c
2009-12-30 22:09:43 +00:00
Daniel Stenberg
5e6ffe353a
(SMTP) support DATA better in the server and make sure to "escape" CRLF.CRLF
...
sequences in uploaded data. The test server doesn't "decode" escaped dot-lines
but instead test cases must be written to take them into account. Added test
case 803 to verify dot-escaping.
2009-12-30 21:52:27 +00:00
Yang Tse
d7cd761047
Oops, should have removed 'not' in previous commit.
2009-12-30 19:43:12 +00:00
Yang Tse
3184a91ec8
VMS specific preprocessor symbol checking adjustments
2009-12-30 17:59:56 +00:00
Yang Tse
a487c80535
Replaced stricmp() usage with our portable strequal()
2009-12-30 15:47:23 +00:00
Daniel Stenberg
1e9a946e6d
move HTTP-specific functions to http.c where they belong
2009-12-29 21:45:02 +00:00
Daniel Stenberg
a218235964
first shot at actually doing the SMTP upload as well, not doing the proper
...
end-of-body treatment
2009-12-25 22:50:11 +00:00
Daniel Stenberg
d911e22d8f
remove some unused code
2009-12-20 22:11:16 +00:00
Daniel Stenberg
6add5baa3a
free the allocated mailbox name at disconnect
2009-12-20 11:10:08 +00:00
Daniel Stenberg
240fa29e94
fixed a precaution check in the cookie code, pointed out by Julien Chaffraix
2009-12-19 19:20:26 +00:00
Yang Tse
4d0b0cae9e
Fix compilation failure
2009-12-17 20:01:24 +00:00