diff options
author | Ondrej Filip <feela@network.cz> | 2000-09-02 02:03:36 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-09-02 02:03:36 +0200 |
commit | a190e7200bf37ba834c776a28583bf897b4377f5 (patch) | |
tree | 734b32f23912956e0cc9add2095a9ccdbba0aa85 /proto/ospf/hello.h | |
parent | 94e2bbcc72f69edbcb3ce66ffa52998f374243c5 (diff) | |
download | bird-a190e7200bf37ba834c776a28583bf897b4377f5.tar bird-a190e7200bf37ba834c776a28583bf897b4377f5.zip |
Added hellos on NBMA networks. (I don't violate RFC now.)
Diffstat (limited to 'proto/ospf/hello.h')
-rw-r--r-- | proto/ospf/hello.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/ospf/hello.h b/proto/ospf/hello.h index fe53c10..4a5d504 100644 --- a/proto/ospf/hello.h +++ b/proto/ospf/hello.h @@ -13,10 +13,13 @@ void install_inactim(struct ospf_neighbor *n); void restart_inactim(struct ospf_neighbor *n); void restart_hellotim(struct ospf_iface *ifa); +void restart_polltim(struct ospf_iface *ifa); void restart_waittim(struct ospf_iface *ifa); void ospf_hello_rx(struct ospf_hello_packet *ps, struct proto *p, struct ospf_iface *ifa, int size, ip_addr faddr); void hello_timer_hook(timer *timer); +void poll_timer_hook(timer *timer); void wait_timer_hook(timer *timer); +void hello_send(timer *timer,int poll, struct ospf_neighbor *dirn); #endif /* _BIRD_OSPF_HELLO_H_ */ |