summaryrefslogtreecommitdiffstats
path: root/nest/password.h
blob: db2a8bff70a3c798573f86c10e24912a1cbddf2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;