diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-04-10 13:24:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-10 13:24:18 +0000 |
commit | 3390b6446c59ffafd58650e8d81957754004238f (patch) | |
tree | 5f332b31ef536de2c7d63128cc69b76a6ba153d2 /include | |
parent | bfc7f1e4ac6b33266990b53bb5b8a2346d4024ae (diff) |
two new error codes to separate READ into READ/RECV and WRITE into WRITE/SEND
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index f803d8c6a..05e1bec0d 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -164,6 +164,8 @@ typedef enum { CURLE_GOT_NOTHING, /* 52 - when this is a specific error */ CURLE_SSL_ENGINE_NOTFOUND, /* 53 - SSL crypto engine not found */ CURLE_SSL_ENGINE_SETFAILED, /* 54 - can not set SSL crypto engine as default */ + CURLE_SEND_ERROR, /* 55 - failed sending network data */ + CURLE_RECV_ERROR, /* 56 - failure in receiving network data */ CURL_LAST /* never use! */ } CURLcode; @@ -637,7 +639,7 @@ CURLcode curl_global_init(long flags); void curl_global_cleanup(void); /* This is the version number */ -#define LIBCURL_VERSION "7.9.6-pre3" +#define LIBCURL_VERSION "7.9.6-pre4" #define LIBCURL_VERSION_NUM 0x070906 /* linked-list structure for the CURLOPT_QUOTE option (and other) */ |