summaryrefslogtreecommitdiffstats
path: root/src/crimson/net/Dispatcher.cc
blob: 336ded38f0f182e35e45a8c5ff26a99f7707245b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "auth/Auth.h"
#include "Dispatcher.h"

namespace ceph::net
{
seastar::future<std::unique_ptr<AuthAuthorizer>>
Dispatcher::ms_get_authorizer(peer_type_t)
{
  return seastar::make_ready_future<std::unique_ptr<AuthAuthorizer>>(nullptr);
}
}