| 
									
										
										
										
											1999-05-26 14:24:57 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *	BIRD -- Password handling | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	Copyright 1999 Pavel Machek <pavel@ucw.cz> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	Can be freely distributed and used under the terms of the GNU GPL. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-26 14:37:07 +00:00
										 |  |  | #ifndef PASSWORD_H
 | 
					
						
							|  |  |  | #define PASSWORD_H
 | 
					
						
							| 
									
										
										
										
											1999-05-31 17:12:00 +00:00
										 |  |  | #include "lib/timer.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-26 14:24:57 +00:00
										 |  |  | struct password_item { | 
					
						
							|  |  |  |   struct password_item *next; | 
					
						
							|  |  |  |   char *password; | 
					
						
							|  |  |  |   int id; | 
					
						
							| 
									
										
										
										
											1999-05-31 17:12:00 +00:00
										 |  |  |   bird_clock_t from, passive, to; | 
					
						
							| 
									
										
										
										
											1999-05-26 14:24:57 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern struct password_item *last_password_item; | 
					
						
							| 
									
										
										
										
											1999-05-31 17:12:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct password_item *get_best_password(struct password_item *head, int flags); | 
					
						
							| 
									
										
										
										
											2000-05-10 13:42:46 +00:00
										 |  |  | extern int password_same(struct password_item *, struct password_item *); | 
					
						
							| 
									
										
										
										
											1999-05-31 19:15:52 +00:00
										 |  |  | extern void password_strncpy(char *to, char *from, int len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-31 17:12:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-26 14:37:07 +00:00
										 |  |  | #endif
 |