mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
17 lines
368 B
C
17 lines
368 B
C
|
/*
|
||
|
* BIRD -- Password handling
|
||
|
*
|
||
|
* Copyright 1999 Pavel Machek <pavel@ucw.cz>
|
||
|
*
|
||
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
||
|
*/
|
||
|
|
||
|
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;
|