diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-01-06 13:13:33 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-01-06 19:53:38 +0100 |
commit | 9275c2be8cd18af5afb2a6c95b18a6aeb5ee529d (patch) | |
tree | 7b551eca54da0eb10cf772b7352c5f6646c954ec /include | |
parent | 50e35ccfbb78c23b375987390060fc3ceb5ba7a9 (diff) | |
download | curl-9275c2be8cd18af5afb2a6c95b18a6aeb5ee529d.tar.gz |
multi.h: move INITIAL_MAX_CONCURRENT_STREAMS from public header
... to the private multihhandle.h. It is not for public use and it
wasn't prefixed correctly anyway!
Closes #4790
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/multi.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/curl/multi.h b/include/curl/multi.h index 89f099259..04996ffca 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2020, 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 @@ -461,9 +461,6 @@ typedef int (*curl_push_callback)(CURL *parent, struct curl_pushheaders *headers, void *userp); -/* value for MAXIMUM CONCURRENT STREAMS upper limit */ -#define INITIAL_MAX_CONCURRENT_STREAMS ((1U << 31) - 1) - #ifdef __cplusplus } /* end of extern "C" */ #endif |