diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-06 10:55:33 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-06 10:55:33 +0200 |
commit | b9ed99f738c10c0576a9ab8a70b028a92d0d74a7 (patch) | |
tree | af0cbca8c4f2f72d5c43d090f7e9a13f7c3deffd /proto/ospf/iface.h | |
parent | a5918961f3a62c55857f811f712f861fa3d35d4f (diff) | |
download | bird-b9ed99f738c10c0576a9ab8a70b028a92d0d74a7.tar bird-b9ed99f738c10c0576a9ab8a70b028a92d0d74a7.zip |
Cleanup in iface.c
Diffstat (limited to 'proto/ospf/iface.h')
-rw-r--r-- | proto/ospf/iface.h | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/proto/ospf/iface.h b/proto/ospf/iface.h index e78a1f8..2c03d2a 100644 --- a/proto/ospf/iface.h +++ b/proto/ospf/iface.h @@ -1,7 +1,7 @@ /* * BIRD -- OSPF * - * (c) 1999 - 2000 Ondrej Filip <feela@network.cz> + * (c) 1999 - 2004 Ondrej Filip <feela@network.cz> * * Can be freely distributed and used under the terms of the GNU GPL. * @@ -10,20 +10,11 @@ #ifndef _BIRD_OSPF_IFACE_H_ #define _BIRD_OSPF_IFACE_H_ -void iface_chstate(struct ospf_iface *ifa, u8 state); -void downint(struct ospf_iface *ifa); -void ospf_int_sm(struct ospf_iface *ifa, int event); -sock *ospf_open_mc_socket(struct ospf_iface *ifa); -sock *ospf_open_ip_socket(struct ospf_iface *ifa); -u8 is_good_iface(struct proto *p, struct iface *iface); -u8 ospf_iface_clasify(struct iface *ifa, struct proto *p); -void ospf_add_timers(struct ospf_iface *ifa, pool *pool); -void ospf_iface_default(struct ospf_iface *ifa); -struct ospf_iface *find_iface(struct proto_ospf *p, struct iface *what); -void ospf_if_notify(struct proto *p, unsigned flags, struct iface *iface); +void ospf_iface_chstate(struct ospf_iface *ifa, u8 state); +void ospf_iface_sm(struct ospf_iface *ifa, int event); +struct ospf_iface *ospf_iface_find(struct proto_ospf *p, struct iface *what); +void ospf_iface_notify(struct proto *p, unsigned flags, struct iface *iface); void ospf_iface_info(struct ospf_iface *ifa); void ospf_iface_shutdown(struct ospf_iface *ifa); -void ospf_ifa_add(struct object_lock *lock); -void schedule_net_lsa(struct ospf_iface *ifa); #endif /* _BIRD_OSPF_IFACE_H_ */ |