svcauth_gss.h 696 B

123456789101112131415161718192021222324252627
  1. /*
  2. * linux/include/linux/sunrpc/svcauth_gss.h
  3. *
  4. * Bruce Fields <bfields@umich.edu>
  5. * Copyright (c) 2002 The Regents of the Unviersity of Michigan
  6. *
  7. * $Id: svcauth_gss.h,v 1.1.1.1 2007/06/12 07:27:16 eyryu Exp $
  8. *
  9. */
  10. #ifndef _LINUX_SUNRPC_SVCAUTH_GSS_H
  11. #define _LINUX_SUNRPC_SVCAUTH_GSS_H
  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. int gss_svc_init(void);
  20. void gss_svc_shutdown(void);
  21. int svcauth_gss_register_pseudoflavor(u32 pseudoflavor, char * name);
  22. #endif /* __KERNEL__ */
  23. #endif /* _LINUX_SUNRPC_SVCAUTH_GSS_H */