mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 11:35:07 -05:00
tests/server/disabled: add "wakeup"
To allow the test suite to know if wakeup support is disabled in the build.
This commit is contained in:
parent
6cd066f64b
commit
769a4687df
@ -29,6 +29,10 @@
|
|||||||
* be shared.
|
* be shared.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "timeval.h"
|
||||||
|
|
||||||
|
struct connectdata;
|
||||||
|
|
||||||
struct conncache {
|
struct conncache {
|
||||||
struct Curl_hash hash;
|
struct Curl_hash hash;
|
||||||
size_t num_conn;
|
size_t num_conn;
|
||||||
|
@ -22,10 +22,14 @@
|
|||||||
*
|
*
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
|
#include "llist.h"
|
||||||
|
#include "hash.h"
|
||||||
#include "conncache.h"
|
#include "conncache.h"
|
||||||
#include "psl.h"
|
#include "psl.h"
|
||||||
#include "socketpair.h"
|
#include "socketpair.h"
|
||||||
|
|
||||||
|
struct connectdata;
|
||||||
|
|
||||||
struct Curl_message {
|
struct Curl_message {
|
||||||
struct Curl_llist_element list;
|
struct Curl_llist_element list;
|
||||||
/* the 'CURLMsg' is the part that is visible to the external user */
|
/* the 'CURLMsg' is the part that is visible to the external user */
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "curl_setup.h"
|
#include "curl_setup.h"
|
||||||
|
#include "multihandle.h" /* for ENABLE_WAKEUP */
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
static const char *disabled[]={
|
static const char *disabled[]={
|
||||||
@ -65,6 +66,9 @@ static const char *disabled[]={
|
|||||||
#endif
|
#endif
|
||||||
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
||||||
"verbose-strings",
|
"verbose-strings",
|
||||||
|
#endif
|
||||||
|
#ifndef ENABLE_WAKEUP
|
||||||
|
"wakeup",
|
||||||
#endif
|
#endif
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user