]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
auth: add missing includes
authorMax Kellermann <max.kellermann@ionos.com>
Tue, 19 Aug 2025 12:00:28 +0000 (14:00 +0200)
committerMax Kellermann <max.kellermann@ionos.com>
Thu, 28 Aug 2025 09:21:05 +0000 (11:21 +0200)
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
src/auth/AuthMethodList.cc
src/auth/cephx/CephxKeyServer.h

index 6efcea4e9c97b3cc98188da3a4424ea157b85d0a..16c2630d0ee87be9185ce8fe51c55b8dcddfca27 100644 (file)
@@ -14,6 +14,7 @@
 
 #include <algorithm>
 #include "common/debug.h"
+#include "include/ceph_fs.h" // for CEPH_AUTH_*
 #include "include/str_list.h"
 
 #include "AuthMethodList.h"
index addac53e7260ca3712a39e1acbf96ad26aee13ec..35c6f80b5b5876fa6bc32833b5db1445ccb57bd8 100644 (file)
 #ifndef CEPH_KEYSSERVER_H
 #define CEPH_KEYSSERVER_H
 
+#include <cstdint>
+#include <list>
+#include <map>
+#include <string>
+
 #include "auth/KeyRing.h"
 #include "CephxProtocol.h"
 #include "common/ceph_json.h"
 #include "common/ceph_mutex.h"
+#include "common/Formatter.h"
 #include "include/common_fwd.h"
+#include "include/encoding.h"
+#include "include/types.h" // for version_t
 
 struct KeyServerData {
   version_t version{0};