diff options
author | Sage Weil <sage@newdream.net> | 2009-10-23 22:40:01 +0200 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-10-23 22:40:01 +0200 |
commit | 48527c8b0690af3823b90f4bf807b7d41f15dd75 (patch) | |
tree | 9f6ab02c6bcf69904ce3172fa60a4bfae6b6a105 /src/auth/AuthClientHandler.h | |
parent | mon: initialize vars (diff) | |
download | ceph-48527c8b0690af3823b90f4bf807b7d41f15dd75.tar.xz ceph-48527c8b0690af3823b90f4bf807b7d41f15dd75.zip |
msgr: put AuthAuthorizer on heap, set protocol field during connect
This paves the way for making it an abstract parent class.
Diffstat (limited to 'src/auth/AuthClientHandler.h')
-rw-r--r-- | src/auth/AuthClientHandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auth/AuthClientHandler.h b/src/auth/AuthClientHandler.h index 9fdb0e2c612..de257b0ce06 100644 --- a/src/auth/AuthClientHandler.h +++ b/src/auth/AuthClientHandler.h @@ -65,7 +65,7 @@ public: virtual void tick() = 0; - bool build_authorizer(uint32_t service_id, AuthAuthorizer& authorizer); + virtual AuthAuthorizer *build_authorizer(uint32_t service_id) = 0; }; |