mirror of
https://github.com/curl/curl.git
synced 2025-09-14 16:12:43 +03:00
keylog: disable if unused
Fully disable keylog code if there is no TLS or QUIC subsystem using it. Closes #12350
This commit is contained in:
parent
20bb363f25
commit
7f33848c98
|
@ -23,6 +23,11 @@
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
#include "curl_setup.h"
|
#include "curl_setup.h"
|
||||||
|
|
||||||
|
#if defined(USE_OPENSSL) || \
|
||||||
|
defined(USE_WOLFSSL) || \
|
||||||
|
(defined(USE_NGTCP2) && defined(USE_NGHTTP3)) || \
|
||||||
|
defined(USE_QUICHE)
|
||||||
|
|
||||||
#include "keylog.h"
|
#include "keylog.h"
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
|
|
||||||
|
@ -157,3 +162,5 @@ Curl_tls_keylog_write(const char *label,
|
||||||
fputs(line, keylog_file_fp);
|
fputs(line, keylog_file_fp);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* TLS or QUIC backend */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user