]> git.proxmox.com Git - ceph.git/blame - ceph/src/auth/AuthServiceHandler.cc
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / auth / AuthServiceHandler.cc
CommitLineData
7c673cae
FG
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3/*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2004-2009 Sage Weil <sage@newdream.net>
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15#include "AuthServiceHandler.h"
16#include "cephx/CephxServiceHandler.h"
11fdf7f2
TL
17#ifdef HAVE_GSSAPI
18#include "krb/KrbServiceHandler.hpp"
19#endif
7c673cae
FG
20#include "none/AuthNoneServiceHandler.h"
21
22#define dout_subsys ceph_subsys_auth
23
24
25AuthServiceHandler *get_auth_service_handler(int type, CephContext *cct, KeyServer *ks)
26{
27 switch (type) {
28 case CEPH_AUTH_CEPHX:
29 return new CephxServiceHandler(cct, ks);
30 case CEPH_AUTH_NONE:
31 return new AuthNoneServiceHandler(cct);
11fdf7f2
TL
32#ifdef HAVE_GSSAPI
33 case CEPH_AUTH_GSS:
34 return new KrbServiceHandler(cct, ks);
35#endif
36 default:
37 return nullptr;
7c673cae 38 }
7c673cae 39}