summaryrefslogtreecommitdiffstats
path: root/nest/password.h
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-05-26 16:24:57 +0200
committerPavel Machek <pavel@ucw.cz>1999-05-26 16:24:57 +0200
commit1a2ded450ecfbb8ccb7f459d7265fc5333d13420 (patch)
tree8c52c62051105b6aa974965bf2baa21e20f15fb2 /nest/password.h
parent9d79fec8dc7c5a3b7e590c00df7eadcef9e80144 (diff)
downloadbird-1a2ded450ecfbb8ccb7f459d7265fc5333d13420.tar
bird-1a2ded450ecfbb8ccb7f459d7265fc5333d13420.zip
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.h16
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;