pre4
This commit is contained in:
parent
a23c63738f
commit
39d4552dab
6
CHANGES
6
CHANGES
@ -6,6 +6,12 @@
|
|||||||
|
|
||||||
History of Changes
|
History of Changes
|
||||||
|
|
||||||
|
Daniel (19 January 2002)
|
||||||
|
- Antonio filed bug report #505514 and provided a fix! When doing multipart
|
||||||
|
formposts, libcurl would include an error text in the actual post if a
|
||||||
|
specified file wasn't found. This is not libcurl's job. Instead we add an
|
||||||
|
empty part.
|
||||||
|
|
||||||
Daniel (18 January 2002)
|
Daniel (18 January 2002)
|
||||||
- Played around with stricter compiler warnings for gcc (when ./configure
|
- Played around with stricter compiler warnings for gcc (when ./configure
|
||||||
--enable-debug is used) and changed some minor things to stop the warnings.
|
--enable-debug is used) and changed some minor things to stop the warnings.
|
||||||
|
@ -48,6 +48,10 @@ TODO
|
|||||||
* Set the SO_KEEPALIVE socket option to make libcurl notice and disconnect
|
* Set the SO_KEEPALIVE socket option to make libcurl notice and disconnect
|
||||||
very long time idle connections.
|
very long time idle connections.
|
||||||
|
|
||||||
|
* Make sure we don't ever loop because of non-blocking sockets return
|
||||||
|
EWOULDBLOCK or similar. This concerns the HTTP request sending, the FTP
|
||||||
|
command sending etc.
|
||||||
|
|
||||||
DOCUMENTATION
|
DOCUMENTATION
|
||||||
|
|
||||||
* Document all CURLcode error codes, why they happen and what most likely
|
* Document all CURLcode error codes, why they happen and what most likely
|
||||||
|
@ -613,7 +613,7 @@ CURLcode curl_global_init(long flags);
|
|||||||
void curl_global_cleanup(void);
|
void curl_global_cleanup(void);
|
||||||
|
|
||||||
/* This is the version number */
|
/* This is the version number */
|
||||||
#define LIBCURL_VERSION "7.9.3-pre3"
|
#define LIBCURL_VERSION "7.9.3-pre4"
|
||||||
#define LIBCURL_VERSION_NUM 0x070903
|
#define LIBCURL_VERSION_NUM 0x070903
|
||||||
|
|
||||||
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
|
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#define CURL_NAME "curl"
|
#define CURL_NAME "curl"
|
||||||
#define CURL_VERSION "7.9.3-pre3"
|
#define CURL_VERSION "7.9.3-pre4"
|
||||||
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
|
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user