blob: d229d27ab19e3154c45813b2126f0b274433f484 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * linux/include/linux/sunrpc/svcauth_gss.h
4 *
5 * Bruce Fields <bfields@umich.edu>
6 * Copyright (c) 2002 The Regents of the University of Michigan
7 */
8
9#ifndef _LINUX_SUNRPC_SVCAUTH_GSS_H
10#define _LINUX_SUNRPC_SVCAUTH_GSS_H
11
12#ifdef __KERNEL__
13#include <linux/sched.h>
14#include <linux/sunrpc/types.h>
15#include <linux/sunrpc/xdr.h>
16#include <linux/sunrpc/svcauth.h>
17#include <linux/sunrpc/svcsock.h>
18#include <linux/sunrpc/auth_gss.h>
19
20int gss_svc_init(void);
21void gss_svc_shutdown(void);
22int gss_svc_init_net(struct net *net);
23void gss_svc_shutdown_net(struct net *net);
Olivier Deprez0e641232021-09-23 10:07:05 +020024struct auth_domain *svcauth_gss_register_pseudoflavor(u32 pseudoflavor,
25 char *name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000026u32 svcauth_gss_flavor(struct auth_domain *dom);
27
28#endif /* __KERNEL__ */
29#endif /* _LINUX_SUNRPC_SVCAUTH_GSS_H */