#include <linux/types.h>
#include <linux/module.h>
#include <linux/sunrpc/types.h>
#include <linux/sunrpc/xdr.h>
#include <linux/sunrpc/svcsock.h>
#include <linux/sunrpc/svcauth.h>
#include <linux/err.h>
#include <linux/hash.h>
Go to the source code of this file.
struct auth_domain* auth_domain_find |
( |
char * |
name | ) |
|
|
read |
struct auth_domain* auth_domain_lookup |
( |
char * |
name, |
|
|
struct auth_domain * |
new |
|
) |
| |
|
read |
int svc_auth_register |
( |
rpc_authflavor_t |
flavor, |
|
|
struct auth_ops * |
aops |
|
) |
| |
void svc_auth_unregister |
( |
rpc_authflavor_t |
flavor | ) |
|
Initial value:= {
.name = "null",
.flavour = RPC_AUTH_NULL,
.accept = svcauth_null_accept,
.release = svcauth_null_release,
}
Definition at line 781 of file svcauth_unix.c.
Initial value:= {
.name = "unix",
.flavour = RPC_AUTH_UNIX,
.accept = svcauth_unix_accept,
.release = svcauth_unix_release,
.domain_release = svcauth_unix_domain_release,
}
Definition at line 862 of file svcauth_unix.c.