1999-05-26 22:24:57 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Password handling
|
|
|
|
*
|
|
|
|
* Copyright 1999 Pavel Machek <pavel@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
1999-05-26 22:37:07 +08:00
|
|
|
#ifndef PASSWORD_H
|
|
|
|
#define PASSWORD_H
|
1999-05-26 22:24:57 +08:00
|
|
|
struct password_item {
|
|
|
|
struct password_item *next;
|
|
|
|
char *password;
|
|
|
|
int id;
|
|
|
|
unsigned int from, to; /* We really don't care about time before 1970 */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct password_item *last_password_item;
|
1999-05-26 22:37:07 +08:00
|
|
|
#endif
|