From 900d5470ae2cada4d37ed62f8bf2ce64c84349cd Mon Sep 17 00:00:00 2001 From: Pavel Machek Date: Mon, 31 May 1999 17:12:00 +0000 Subject: Added PASSIVE option to paswwords. --- nest/password.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'nest/password.h') diff --git a/nest/password.h b/nest/password.h index b457495..16f4385 100644 --- a/nest/password.h +++ b/nest/password.h @@ -8,12 +8,17 @@ #ifndef PASSWORD_H #define PASSWORD_H +#include "lib/timer.h" + struct password_item { struct password_item *next; char *password; int id; - unsigned int from, to; /* We really don't care about time before 1970 */ + bird_clock_t from, passive, to; }; extern struct password_item *last_password_item; + +struct password_item *get_best_password(struct password_item *head, int flags); + #endif -- cgit v1.2.3