blob: 16f4385a176bcee2a97fbb2657d11ff4fcf31cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* BIRD -- Password handling
*
* Copyright 1999 Pavel Machek <pavel@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef PASSWORD_H
#define PASSWORD_H
#include "lib/timer.h"
struct password_item {
struct password_item *next;
char *password;
int id;
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
|