auth.h 339 B

12345678910111213141516
  1. /*
  2. * nfsd-specific authentication stuff.
  3. *
  4. * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
  5. */
  6. #ifndef LINUX_NFSD_AUTH_H
  7. #define LINUX_NFSD_AUTH_H
  8. /*
  9. * Set the current process's fsuid/fsgid etc to those of the NFS
  10. * client user
  11. */
  12. int nfsd_setuser(struct svc_rqst *, struct svc_export *);
  13. #endif /* LINUX_NFSD_AUTH_H */