Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / libpam / modules / pam_userdb / pam_userdb.h
1
2 #ifndef _PAM_USERSDB_H
3 #define _PAM_USERSDB_H
4 /* $Id: pam_userdb.h,v 1.1.1.1 2000/06/20 22:12:09 agmorgan Exp $ */
5 /* $FreeBSD: src/contrib/libpam/modules/pam_userdb/pam_userdb.h,v 1.1.1.1.2.2 2001/06/11 15:28:34 markm Exp $ */
6    
7 /* Header files */
8 #include <security/pam_appl.h>
9
10 /* argument parsing */
11 #define PAM_DEBUG_ARG           0x0001
12 #define PAM_ICASE_ARG           0x0002
13 #define PAM_DUMP_ARG            0x0004
14
15 /* Useful macros */
16 #define  x_strdup(s)  ( (s) ? strdup(s):NULL )
17
18 /* The name of the module we are compiling */
19 #ifndef MODULE_NAME
20 #define MODULE_NAME     "pam_userdb"
21 #endif /* MODULE_NAME */
22
23 /* function prototypes */
24 int conversation(pam_handle_t *);
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  */