diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-25 16:39:53 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-25 16:39:53 +0000 |
commit | 98ac61766d81d9f20c4a7c7e12859c3b82b24f4c (patch) | |
tree | 214b6571623582884aede8f634b146b330e72bc3 /proto/ospf/lsack.c | |
parent | 5ed68e46d781f8a14d3ef3ffd7fe3afc4a62260e (diff) |
A lot of changes:
- metric is 3 byte long now
- summary lsa originating
- more OSPF areas possible
- virtual links
- better E1/E2 routes handling
- some bug fixes..
I have to do:
- md5 auth (last mandatory item from rfc2328)
- !!!!DEBUG!!!!! (mainly virtual link system has probably a lot of bugs)
- 2328 appendig E
Diffstat (limited to 'proto/ospf/lsack.c')
-rw-r--r-- | proto/ospf/lsack.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/proto/ospf/lsack.c b/proto/ospf/lsack.c index 7d7238c2..bdad8665 100644 --- a/proto/ospf/lsack.c +++ b/proto/ospf/lsack.c @@ -78,16 +78,16 @@ ospf_lsack_send(struct ospf_neighbor *n, int queue) if (ifa->type == OSPF_IT_BCAST) { if ((ifa->state == OSPF_IS_DR) || (ifa->state == OSPF_IS_BACKUP)) - sk_send_to(sk, len, AllSPFRouters, OSPF_PROTO); + ospf_send_to(sk, len, AllSPFRouters); else - sk_send_to(sk, len, AllDRouters, OSPF_PROTO); + ospf_send_to(sk, len, AllDRouters); } else { if ((ifa->state == OSPF_IS_DR) || (ifa->state == OSPF_IS_BACKUP)) - sk_send_to_agt(sk, len, ifa, NEIGHBOR_EXCHANGE); + ospf_send_to_agt(sk, len, ifa, NEIGHBOR_EXCHANGE); else - sk_send_to_bdr(sk, len, ifa); + ospf_send_to_bdr(sk, len, ifa); } fill_ospf_pkt_hdr(n->ifa, pk, LSACK_P); @@ -104,16 +104,16 @@ ospf_lsack_send(struct ospf_neighbor *n, int queue) { if ((ifa->state == OSPF_IS_DR) || (ifa->state == OSPF_IS_BACKUP)) { - sk_send_to(sk, len, AllSPFRouters, OSPF_PROTO); + ospf_send_to(sk, len, AllSPFRouters); } else { - sk_send_to(sk, len, AllDRouters, OSPF_PROTO); + ospf_send_to(sk, len, AllDRouters); } } else { - sk_send_to_agt(sk, len, ifa, NEIGHBOR_EXCHANGE); + ospf_send_to_agt(sk, len, ifa, NEIGHBOR_EXCHANGE); } } |