diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-08-20 12:27:50 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-08-20 23:13:19 +0200 |
commit | 19122c07682c268c2383218f62e09c3d24a41e76 (patch) | |
tree | 7ada8e345488863936046a5343e5a83a73c03b30 /include | |
parent | c346c4c8f9503239ad3b5f2ba1cca9a317707e88 (diff) | |
download | curl-19122c07682c268c2383218f62e09c3d24a41e76.tar.gz |
CURLM_ADDED_ALREADY: new error code
Doing curl_multi_add_handle() on an easy handle that is already added to
a multi handle now returns this error code. It previously returned
CURLM_BAD_EASY_HANDLE for this condition.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/multi.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/curl/multi.h b/include/curl/multi.h index a5eb3c643..3c4acb0f6 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -64,6 +64,8 @@ typedef enum { CURLM_INTERNAL_ERROR, /* this is a libcurl bug */ CURLM_BAD_SOCKET, /* the passed in socket argument did not match */ CURLM_UNKNOWN_OPTION, /* curl_multi_setopt() with unsupported option */ + CURLM_ADDED_ALREADY, /* an easy handle already added to a multi handle was + attempted to get added - again */ CURLM_LAST } CURLMcode; |