Rev | Line | |
---|
[9] | 1 | /* pass.h
|
---|
| 2 | *
|
---|
| 3 | * This file is part of httpd.
|
---|
| 4 | *
|
---|
| 5 | * 07/07/1996 Initial Release Michael Temari <Michael@TemWare.Com>
|
---|
| 6 | * 12/29/2002 Initial Release Michael Temari <Michael@TemWare.Com>
|
---|
| 7 | *
|
---|
| 8 | */
|
---|
| 9 |
|
---|
| 10 | _PROTOTYPE(int passfile, (char *pwdfile));
|
---|
| 11 | _PROTOTYPE(int passuser, (char *pwdfile, char *user));
|
---|
| 12 | _PROTOTYPE(int passnone, (char *pwdfile, char *user));
|
---|
| 13 | _PROTOTYPE(int passpass, (char *pwdfile, char *user, char *pass));
|
---|
| 14 | _PROTOTYPE(int passadd, (char *pwdfile, char *user, char *pass, char *e1, char *e2, char *e3, char *e4));
|
---|
| 15 |
|
---|
| 16 | #define PASS_GOOD 0
|
---|
| 17 | #define PASS_USEREXISTS 1
|
---|
| 18 | #define PASS_ERROR -1
|
---|
Note:
See
TracBrowser
for help on using the repository browser.