bird/nest/password.h

29 lines
551 B
C
Raw Normal View History

/*
* BIRD -- Password handling
*
* (c) 1999 Pavel Machek <pavel@ucw.cz>
* (c) 2004 Ondrej Filip <feela@network.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#ifndef PASSWORD_H
#define PASSWORD_H
1999-06-01 01:12:00 +08:00
#include "lib/timer.h"
#define MD5_AUTH_SIZE 16
struct password_item {
node n;
char *password;
int id;
bird_clock_t accfrom, accto, genfrom, gento;
};
extern struct password_item *last_password_item;
1999-06-01 01:12:00 +08:00
struct password_item *password_find(list *);
void password_cpy(char *dst, char *src, int size);
1999-06-01 01:12:00 +08:00
#endif