]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
auth/cephx: add missing includes
authorMax Kellermann <max.kellermann@ionos.com>
Sat, 26 Oct 2024 17:50:19 +0000 (19:50 +0200)
committerMax Kellermann <max.kellermann@ionos.com>
Wed, 16 Apr 2025 09:30:02 +0000 (11:30 +0200)
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
src/auth/cephx/CephxKeyServer.cc
src/auth/cephx/CephxKeyServer.h
src/auth/cephx/CephxServiceHandler.cc
src/auth/cephx/CephxSessionHandler.cc

index a5ad1f2b7973c9a1657557886e444be5b94b7663..77f33c4b1cbcfdc75a08c5a3a8fea74ba884fa47 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "common/config.h"
 #include "CephxKeyServer.h"
+#include "common/Clock.h" // for ceph_clock_now()
 #include "common/dout.h"
 #include <sstream>
 
index d147dd441ad2447d403d54fcc202188bdaeed89d..b87c30886e047d886d730cc0803225303486252b 100644 (file)
@@ -17,6 +17,7 @@
 
 #include "auth/KeyRing.h"
 #include "CephxProtocol.h"
+#include "common/ceph_json.h"
 #include "common/ceph_mutex.h"
 #include "include/common_fwd.h"
 
index 977a43ad64f293483f52fc80cf0bb3067119c431..4921728ae52a10aced0f55515cf1c291b861de3c 100644 (file)
@@ -17,9 +17,9 @@
 #include "CephxProtocol.h"
 #include "CephxKeyServer.h"
 #include <errno.h>
-#include <sstream>
 
 #include "include/random.h"
+#include "common/Clock.h" // for ceph_clock_now()
 #include "common/config.h"
 #include "common/debug.h"
 
index 1c0ad4e63539e74b585cf7ee159d3789924ef90d..bbe63a3db238904de51e91661860ab55f116a22a 100644 (file)
@@ -16,7 +16,6 @@
 #include "CephxProtocol.h"
 
 #include <errno.h>
-#include <sstream>
 
 #include "common/config.h"
 #include "include/ceph_features.h"