]> git.proxmox.com Git - ceph.git/blob - ceph/src/crimson/net/Dispatcher.cc
update download target update for octopus release
[ceph.git] / ceph / src / crimson / net / Dispatcher.cc
1 #include "auth/Auth.h"
2 #include "Dispatcher.h"
3
4 namespace ceph::net
5 {
6 seastar::future<std::unique_ptr<AuthAuthorizer>>
7 Dispatcher::ms_get_authorizer(peer_type_t)
8 {
9 return seastar::make_ready_future<std::unique_ptr<AuthAuthorizer>>(nullptr);
10 }
11 }