2015-10-06 05:58:01 +08:00
|
|
|
/*
|
2016-05-18 02:24:46 +08:00
|
|
|
* Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2015-10-06 05:58:01 +08:00
|
|
|
*
|
2016-05-18 02:24:46 +08:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2015-10-06 05:58:01 +08:00
|
|
|
*/
|
|
|
|
|
2015-11-22 09:14:43 +08:00
|
|
|
/* This must be the first #include file */
|
2015-10-06 05:58:01 +08:00
|
|
|
#include "../async_locl.h"
|
|
|
|
|
|
|
|
#ifdef ASYNC_NULL
|
2016-03-19 02:30:20 +08:00
|
|
|
# include <openssl/ct.h>
|
|
|
|
# include <openssl/x509v3.h>
|
2015-10-06 05:58:01 +08:00
|
|
|
|
2016-03-08 00:55:39 +08:00
|
|
|
int ASYNC_is_capable(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-20 05:44:13 +08:00
|
|
|
void async_local_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-10-06 05:58:01 +08:00
|
|
|
#endif
|
|
|
|
|