bird/nest/password.c

45 lines
836 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.
*/
#include "nest/bird.h"
#include "nest/password.h"
2002-11-13 16:47:06 +08:00
#include "lib/string.h"
struct password_item *last_password_item = NULL;
1999-06-01 01:12:00 +08:00
struct password_item *
password_find(list *l, int first_fit)
1999-06-01 01:12:00 +08:00
{
struct password_item *pi;
struct password_item *pf = NULL;
1999-06-01 01:12:00 +08:00
2004-07-01 23:01:26 +08:00
if (l)
{
2004-07-01 23:01:26 +08:00
WALK_LIST(pi, *l)
{
2008-11-06 05:36:49 +08:00
if ((pi->genfrom < now_real) && (pi->gento > now_real))
{
if (first_fit)
return pi;
if (!pf || pf->genfrom < pi->genfrom)
pf = pi;
}
2004-07-01 23:01:26 +08:00
}
1999-06-01 01:12:00 +08:00
}
return pf;
1999-06-01 01:12:00 +08:00
}
void password_cpy(char *dst, char *src, int size)
{
bzero(dst, size);
2004-07-13 21:52:54 +08:00
memcpy(dst, src, (strlen(src) < (unsigned) size ? strlen(src) : (unsigned) size));
}