pam_userdb.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef _PAM_USERSDB_H
  2. #define _PAM_USERSDB_H
  3. /* $Id$ */
  4. /* Header files */
  5. #include <security/pam_appl.h>
  6. /* argument parsing */
  7. #define PAM_DEBUG_ARG 0x0001
  8. #define PAM_ICASE_ARG 0x0002
  9. #define PAM_DUMP_ARG 0x0004
  10. #define PAM_UNKNOWN_OK_ARG 0x0010
  11. #define PAM_KEY_ONLY_ARG 0x0020
  12. #define PAM_USE_FPASS_ARG 0x0040
  13. #define PAM_TRY_FPASS_ARG 0x0080
  14. /* The name of the module we are compiling */
  15. #ifndef MODULE_NAME
  16. #define MODULE_NAME "pam_userdb"
  17. #endif /* MODULE_NAME */
  18. #endif /* _PAM_USERSDB_H */
  19. /*
  20. * Copyright (c) Cristian Gafton <gafton@redhat.com>, 1999
  21. * All rights reserved
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the above copyright
  27. * notice, and the entire permission notice in its entirety,
  28. * including the disclaimer of warranties.
  29. * 2. Redistributions in binary form must reproduce the above copyright
  30. * notice, this list of conditions and the following disclaimer in the
  31. * documentation and/or other materials provided with the distribution.
  32. * 3. The name of the author may not be used to endorse or promote
  33. * products derived from this software without specific prior
  34. * written permission.
  35. *
  36. * ALTERNATIVELY, this product may be distributed under the terms of
  37. * the GNU Public License, in which case the provisions of the GPL are
  38. * required INSTEAD OF the above restrictions. (This clause is
  39. * necessary due to a potential bad interaction between the GPL and
  40. * the restrictions contained in a BSD-style copyright.)
  41. *
  42. * THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESS OR IMPLIED
  43. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  44. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  45. * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  46. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  47. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  48. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  49. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  50. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  51. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  52. * OF THE POSSIBILITY OF SUCH DAMAGE.
  53. */