From: Max Kellermann Date: Mon, 7 Oct 2024 02:58:04 +0000 (+0200) Subject: msg/async/ProtocolV1: add missing includes X-Git-Tag: v20.0.0~52^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=36beea7a85585deb7e6231bc087ea63ff33b95d5;p=ceph.git msg/async/ProtocolV1: add missing includes Signed-off-by: Max Kellermann --- 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*;