You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2022/02/18 23:18:13 UTC

[trafficserver] branch master updated: Fix missing unique_lock definition. (#8680)

This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 394a9ee  Fix missing unique_lock definition. (#8680)
394a9ee is described below

commit 394a9eec7d86e29a285a546ad0fc24b2f371db98
Author: Randy DuCharme <51...@users.noreply.github.com>
AuthorDate: Fri Feb 18 17:18:02 2022 -0600

    Fix missing unique_lock definition. (#8680)
---
 iocore/net/P_TLSKeyLogger.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iocore/net/P_TLSKeyLogger.h b/iocore/net/P_TLSKeyLogger.h
index 73b1b70..7555061 100644
--- a/iocore/net/P_TLSKeyLogger.h
+++ b/iocore/net/P_TLSKeyLogger.h
@@ -27,6 +27,7 @@
 #include <openssl/ssl.h>
 
 #include <memory>
+#include <mutex>
 #include <shared_mutex>
 
 /** A class for handling TLS secrets logging. */