From 36beea7a85585deb7e6231bc087ea63ff33b95d5 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 7 Oct 2024 04:58:04 +0200 Subject: [PATCH] msg/async/ProtocolV1: add missing includes Signed-off-by: Max Kellermann --- src/msg/async/ProtocolV1.cc | 1 + src/msg/async/ProtocolV1.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/msg/async/ProtocolV1.cc b/src/msg/async/ProtocolV1.cc index 17d3dcfbe2c..b680e954537 100644 --- a/src/msg/async/ProtocolV1.cc +++ b/src/msg/async/ProtocolV1.cc @@ -11,6 +11,7 @@ #include "include/random.h" #include "auth/AuthClient.h" #include "auth/AuthServer.h" +#include "auth/AuthSessionHandler.h" #define dout_subsys ceph_subsys_ms #undef dout_prefix diff --git a/src/msg/async/ProtocolV1.h b/src/msg/async/ProtocolV1.h index 63bc1cd0946..6f78af9bea8 100644 --- a/src/msg/async/ProtocolV1.h +++ b/src/msg/async/ProtocolV1.h @@ -5,7 +5,9 @@ #define _MSG_ASYNC_PROTOCOL_V1_ #include "Protocol.h" +#include "AsyncConnection.h" +struct AuthSessionHandler; class ProtocolV1; using CtPtr = Ct*; -- 2.47.3