1999-11-17 23:50:41 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2004-06-04 20:53:10 +08:00
|
|
|
* (c) 1999 - 2004 Ondrej Filip <feela@network.cz>
|
1999-11-17 23:50:41 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_OSPF_HELLO_H_
|
|
|
|
#define _BIRD_OSPF_HELLO_H_
|
|
|
|
|
2004-06-05 01:12:27 +08:00
|
|
|
void ospf_hello_receive(struct ospf_hello_packet *ps,
|
2004-06-07 03:53:52 +08:00
|
|
|
struct ospf_iface *ifa, struct ospf_neighbor *n, ip_addr faddr);
|
|
|
|
void ospf_hello_send(timer *timer, int poll, struct ospf_neighbor *dirn);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
|
|
|
#endif /* _BIRD_OSPF_HELLO_H_ */
|