Daniel Stenberg
e7d8d8e257
bump: towards next release
...
for all we know now, it might be called 7.46.1
2015-12-02 23:24:47 +01:00
Daniel Stenberg
e2ae32ff5f
RELEASE-NOTES: updated contributor count for 7.46.0
2015-12-01 23:10:16 +01:00
Daniel Stenberg
6623a485d3
THANKS: new contributors from the 7.46.0 release
2015-12-01 22:53:24 +01:00
Daniel Stenberg
940c2f51aa
THANKS-filter: single Tim Rühsen spelling
2015-12-01 22:51:50 +01:00
Daniel Stenberg
a47137c4a5
docs/examples: gitignore some more built examples
2015-12-01 09:09:04 +01:00
Daniel Stenberg
5648f0a32c
RELEASE-NOTES; this bug was never released
2015-11-30 08:22:32 +01:00
Daniel Stenberg
2fddc4e3e1
RELEASE-NOTES: synced with e55f15454e
2015-11-30 08:03:28 +01:00
Flavio Medeiros
e55f15454e
Curl_read_plain: clean up ifdefs that break statements
...
Closes #546
2015-11-30 00:28:28 +01:00
Daniel Stenberg
fe7c39d353
http2: convert some verbose output into debug-only output
2015-11-30 00:12:46 +01:00
Daniel Stenberg
8f281fb76d
http2 push: add missing inits of new stream
...
- set the correct stream_id for pushed streams
- init maxdownload and size properly
2015-11-30 00:11:42 +01:00
Daniel Stenberg
8cbd80686e
http2 push: set weight for new stream
...
give the new stream the old one's stream_weight internally to avoid
sending a PRIORITY frame unless asked for it
2015-11-30 00:10:35 +01:00
Daniel Stenberg
a14fa8f8ff
curl_setup.h: undef freeaddrinfo in c-ares block to fix build
...
Fixes warnings 78c25c854a
added.
2015-11-28 17:26:38 +01:00
Daniel Stenberg
81ae6d01fa
nonblock: fix setting non-blocking mode for Amiga
...
IoctlSocket() apparently wants a pointer to a long, passed as a char *
in its third parameter. This bug was introduced already back in commit
c5fdeef41d
from October 1 2001!
Bug: http://curl.haxx.se/mail/lib-2015-11/0088.html
Reported-by: Norbert Kett
2015-11-27 23:29:30 +01:00
Daniel Stenberg
19a8afb3c0
zsh install: fix DESTDIR support
...
Reported-by: Mohammad AlSaleh
2015-11-27 23:24:07 +01:00
Dan Fandrich
78c25c854a
lib: Only define curl_dofreeaddrinfo if struct addrinfo is available
2015-11-27 10:51:22 +01:00
Steve Holme
db05d7a731
tool_paramhlp: Fixed display of URL index in password prompt for --next
...
Commit f3bae6ed73
added the URL index to the password prompt when using
--next. Unfortunately, because the size_t specifier (%zu) is not
supported by all sprintf() implementations we use the curl_off_t format
specifier instead. The display of an incorrect value arises on platforms
where size_t and curl_off_t are of a different size.
2015-11-27 06:59:02 +00:00
Daniel Stenberg
cd2b73b3ed
timecond: do not add if-modified-since without timecondition
...
The RTSP code path didn't skip adding the if-modified-since for certain
RTSP code paths, even if CURLOPT_TIMECONDITION was set to
CURL_TIMECOND_NONE.
Also, an unknown non-zero CURLOPT_TIMECONDITION value no longer equals
CURL_TIMECOND_IFMODSINCE.
Bug: http://stackoverflow.com/questions/33903982/curl-timecond-none-doesnt-work-how-to-remove-if-modified-since-header
2015-11-25 11:38:10 +01:00
Daniel Stenberg
5b96b5e79e
RELEASE-NOTES: synced with 99d17a5e2b
2015-11-25 11:29:00 +01:00
Daniel Stenberg
99d17a5e2b
examples/README: cut out the incomplete list
...
... and add a generic explanation for them instead. Each example file
should contain its own description these days.
2015-11-25 10:49:22 +01:00
Daniel Stenberg
facf2925c7
test1513: make sure the callback is only called once
2015-11-24 23:33:37 +01:00
Daniel Shahaf
be0d4141af
build: Install zsh completion
...
Fixes #534
Closes #537
2015-11-24 22:22:01 +01:00
Daniel Stenberg
40c349ada9
done: make sure the final progress update is made
...
It would previously be skipped if an existing error was returned, but
would lead to a previous value being left there and later used.
CURLINFO_TOTAL_TIME for example.
Still it avoids that final progress update if we reached DONE as the
result of a callback abort to avoid another callback to be called after
an abort-by-callback.
Reported-by: Lukas Ruzicka
Closes #538
2015-11-24 20:49:04 +01:00
Daniel Stenberg
bb9ec5ebb2
curl: expanded the -XHEAD warning text
...
... to also mention the specific options used.
2015-11-24 10:11:06 +01:00
Daniel Stenberg
c341311a0e
Revert "cleanup: general removal of TODO (and similar) comments"
...
This reverts commit 64e959ffe3
.
Feedback-by: Dan Fandrich
URL: http://curl.haxx.se/mail/lib-2015-11/0062.html
2015-11-24 09:36:45 +01:00
Daniel Stenberg
fc5d783589
CURLOPT_HEADERFUNCTION.3: fix typo
...
Refer to _HEADERDATA not _WRITEDATA.
Reported-by: Michał Piechowski
2015-11-23 16:11:57 +01:00
Daniel Stenberg
98acebb526
TODO: TCP Fast Open
2015-11-23 10:58:12 +01:00
Steve Holme
06b288a72d
examples: Added website parse-able descriptions to the e-mail examples
2015-11-22 11:55:10 +00:00
Steve Holme
d55f9071fb
TODO: Added another 'multi-interface' idea
2015-11-21 17:59:14 +00:00
Steve Holme
b7f3f1b68f
smb.c: Fixed compilation warnings
...
smb.c:134:3: warning: conversion to 'short unsigned int' from 'int' may
alter its value
smb.c:146:42: warning: conversion to 'unsigned int' from 'long long
unsigned int' may alter its value
smb.c:146:65: warning: conversion to 'unsigned int' from 'long long
unsigned int' may alter its value
2015-11-21 11:41:20 +00:00
Steve Holme
c2f1730e17
schannel: Corrected copy/paste error in commit 8d17117683
2015-11-21 02:54:44 +00:00
Steve Holme
8d17117683
schannel: Use GetVersionEx() when VerifyVersionInfo() isn't available
...
Regression from commit 7a8e861a5
as highlighted in the msys autobuilds.
2015-11-21 02:43:17 +00:00
Steve Holme
c90e348579
examples: Fixed compilation warnings
...
pop3-multi.c:96:5: warning: implicit declaration of function 'memset'
imap-multi.c:96:5: warning: implicit declaration of function 'memset'
http2-download.c:226:5: warning: implicit declaration of function 'memset'
http2-upload.c:290:5: warning: implicit declaration of function 'memset'
http2-upload.c:290:5: warning: implicit declaration of function 'memset'
2015-11-21 01:47:02 +00:00
Steve Holme
f024ece8c7
Makefile.inc: Fixed test run error
...
test845 not present in tests/data/Makefile.inc
2015-11-21 00:04:57 +00:00
Daniel Stenberg
ad6f6e17d3
TODO: remove duplicated title
2015-11-20 09:37:11 +01:00
Daniel Stenberg
0ddc59be0a
TODO: added two more libcurl ideas
...
Moved some ideas from "next major" to just ordinary ideas since we can
always add new things while keeping the old without doing a "next
major".
2015-11-20 08:39:59 +01:00
Steve Holme
bbb34b6f15
tests: Re-enabled tests 889 and 890 following POP3 fix
2015-11-20 07:04:19 +00:00
Steve Holme
41efdadf09
pop3: Differentiate between success and continuation responses
2015-11-20 07:01:01 +00:00
Steve Holme
6af80afe49
pop3: Added clarity on some server response codes
2015-11-20 06:41:53 +00:00
Daniel Shahaf
80562083da
build: Fix theoretical infinite loops
...
Add error-checking to 'cd' in a few cases where omitting the checks
might result in an infinite loop.
Closes #535
2015-11-20 00:25:42 +01:00
Patrick Monnerat
ff8d352ae9
curl.h: s/#defien/#define/
2015-11-19 13:53:47 +01:00
Patrick Monnerat
250d786bd2
os400: synchronize ILE/RPG header file
2015-11-19 13:52:06 +01:00
Patrick Monnerat
0cf80c05ea
os400: Provide options for libssh2 use in compile scripts. Adjust README.
2015-11-19 13:37:51 +01:00
danielsh@apache.org
b27893d15c
zsh completion: Preserve single quotes in output
...
When an option's help string contains literal single quotes, those
single quotes would be stripped from the option's description in the
completion output (unless the zsh RC_QUOTES option were set while the
completion function was being sourced, which is not the default). This
patch makes the completion output contain single quotes where the --help
output does.
Closes #532
2015-11-19 12:10:31 +01:00
MaxGiting
05cd55f229
FAQ: Grammar changes
...
Closes https://github.com/bagder/curl/pull/533
2015-11-18 23:00:50 -05:00
Daniel Stenberg
b4c39010b5
http2: http_done: don't free already-freed push headers
...
The push headers are freed after the push callback has been invoked,
meaning this code should only free the headers if the callback was never
invoked and thus the headers weren't freed at that time.
Reported-by: Davey Shafik
2015-11-17 09:47:58 +01:00
Anders Bakken
a72207ecf0
getconnectinfo: Don't call recv(2) if socket == -1
...
Closes #528
2015-11-16 22:42:13 +01:00
Daniel Stenberg
6c5f4303fe
CURLMOPT_PUSHFUNCTION.3: *_byname() returns only the first header
...
... if there are more than one using the same name
2015-11-16 08:26:48 +01:00
Daniel Stenberg
39904d6f7d
http2: minor comment typo
2015-11-16 08:22:08 +01:00
Daniel Stenberg
88f585c3a1
sasl; fix checksrc warnings
2015-11-15 23:15:00 +01:00
Steve Holme
051485d9e0
RELEASE-NOTES: Adjusted for the recent OAuth 2.0 activity
2015-11-15 20:18:44 +00:00