diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-05-26 14:24:57 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-05-26 14:24:57 +0000 |
commit | 1a2ded450ecfbb8ccb7f459d7265fc5333d13420 (patch) | |
tree | 8c52c62051105b6aa974965bf2baa21e20f15fb2 /nest/password.h | |
parent | 9d79fec8dc7c5a3b7e590c00df7eadcef9e80144 (diff) |
Skeleton for password handling, currently I only build structures and
do nothing more advanced for them
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 00000000..db2a8bff --- /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; |