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