mirror of
https://github.com/curl/curl.git
synced 2025-02-17 14:59:45 +08: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.
|
||||
*/
|
||||
|
||||
#include "timeval.h"
|
||||
|
||||
struct connectdata;
|
||||
|
||||
struct conncache {
|
||||
struct Curl_hash hash;
|
||||
size_t num_conn;
|
||||
|
@ -22,10 +22,14 @@
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
#include "llist.h"
|
||||
#include "hash.h"
|
||||
#include "conncache.h"
|
||||
#include "psl.h"
|
||||
#include "socketpair.h"
|
||||
|
||||
struct connectdata;
|
||||
|
||||
struct Curl_message {
|
||||
struct Curl_llist_element list;
|
||||
/* the 'CURLMsg' is the part that is visible to the external user */
|
||||
|
@ -30,6 +30,7 @@
|
||||
*/
|
||||
|
||||
#include "curl_setup.h"
|
||||
#include "multihandle.h" /* for ENABLE_WAKEUP */
|
||||
#include <stdio.h>
|
||||
|
||||
static const char *disabled[]={
|
||||
@ -65,6 +66,9 @@ static const char *disabled[]={
|
||||
#endif
|
||||
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
||||
"verbose-strings",
|
||||
#endif
|
||||
#ifndef ENABLE_WAKEUP
|
||||
"wakeup",
|
||||
#endif
|
||||
NULL
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user