~ubuntu-branches/ubuntu/trusty/libpam-tacplus/trusty

« back to all changes in this revision

Viewing changes to pam_tacplus.h

  • Committer: Package Import Robot
  • Author(s): Jeroen Nijhof
  • Date: 2014-01-31 12:32:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140131123200-slruika7jmfmyfp6
Tags: 1.3.8-1
* New upstream release.
* Fixed pam-configs. Closes: #717716
* Added dh-autoreconf. Closes: #734228

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * See `CHANGES' file for revision history.
20
20
 */
21
21
 
 
22
#ifndef PAM_TACPLUS_H
 
23
#define PAM_TACPLUS_H
 
24
 
 
25
/* define these before including PAM headers */
 
26
#define PAM_SM_AUTH
 
27
#define PAM_SM_ACCOUNT
 
28
#define PAM_SM_SESSION
 
29
#define PAM_SM_PASSWORD
 
30
 
 
31
#include <security/pam_appl.h>
 
32
#include <security/pam_modules.h>
 
33
 
22
34
/* pam_tacplus command line options */
23
35
#define PAM_TAC_DEBUG 0x01
24
36
#define PAM_TAC_ACCT  0x02 /* account on all specified servers */
28
40
/* pam_tacplus major, minor and patchlevel version numbers */
29
41
#define PAM_TAC_VMAJ 1
30
42
#define PAM_TAC_VMIN 3
31
 
#define PAM_TAC_VPAT 7
 
43
#define PAM_TAC_VPAT 8
32
44
 
33
45
#ifndef PAM_EXTERN
34
 
    #define PAM_EXTERN extern
 
46
  #define PAM_EXTERN extern
35
47
#endif
 
48
 
 
49
#endif  /* PAM_TACPLUS_H */
 
50