1998-05-20 19:54:33 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Protocols
|
|
|
|
*
|
|
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "lib/resource.h"
|
|
|
|
#include "lib/lists.h"
|
|
|
|
|
|
|
|
list proto_list;
|
|
|
|
|
|
|
|
void
|
1998-05-24 22:48:52 +08:00
|
|
|
protos_init(void)
|
1998-05-20 19:54:33 +08:00
|
|
|
{
|
|
|
|
init_list(&proto_list);
|
|
|
|
}
|