diff options
Diffstat (limited to 'nest/password.h')
-rw-r--r-- | nest/password.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nest/password.h b/nest/password.h new file mode 100644 index 0000000..db2a8bf --- /dev/null +++ b/nest/password.h @@ -0,0 +1,16 @@ +/* + * 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; |