auth.h

来自「omap3 linux 2.6 用nocc去除了冗余代码」· C头文件 代码 · 共 24 行

H
24
字号
/* * include/linux/nfsd/auth.h * * nfsd-specific authentication stuff. * uid/gid mapping not yet implemented. * * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> */#define LINUX_NFSD_AUTH_H#define nfsd_luid(rq, uid)	((u32)(uid))#define nfsd_lgid(rq, gid)	((u32)(gid))#define nfsd_ruid(rq, uid)	((u32)(uid))#define nfsd_rgid(rq, gid)	((u32)(gid))/* * Set the current process's fsuid/fsgid etc to those of the NFS * client user */int nfsd_setuser(struct svc_rqst *, struct svc_export *);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?