summaryrefslogtreecommitdiffstats
path: root/proto/ospf/lsack.h
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2004-06-04 18:30:04 +0200
committerOndrej Filip <feela@network.cz>2004-06-04 18:30:04 +0200
commitc76ba51a5fc7d61e18213f99d9c09502af0bc192 (patch)
treee778fef3a0fe4a169ba35f162733904e40756498 /proto/ospf/lsack.h
parent28de5133ecdcb5b45dc251123047164fbb940e50 (diff)
downloadbird-c76ba51a5fc7d61e18213f99d9c09502af0bc192.tar
bird-c76ba51a5fc7d61e18213f99d9c09502af0bc192.zip
lsack.c cleaned. Better names for functions and
DIRECT acks can be sent in one packet now.
Diffstat (limited to 'proto/ospf/lsack.h')
-rw-r--r--proto/ospf/lsack.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/proto/ospf/lsack.h b/proto/ospf/lsack.h
index 55198a4..484c434 100644
--- a/proto/ospf/lsack.h
+++ b/proto/ospf/lsack.h
@@ -1,7 +1,7 @@
/*
* BIRD -- OSPF
*
- * (c) 2000 Ondrej Filip <feela@network.cz>
+ * (c) 2000--2004 Ondrej Filip <feela@network.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*
@@ -14,10 +14,9 @@ struct lsah_n {
struct ospf_lsa_header lsa;
};
-void ospf_lsack_direct_tx(struct ospf_neighbor *n,struct ospf_lsa_header *h);
-void ospf_lsack_rx(struct ospf_lsack_packet *ps, struct proto *p,
+void ospf_lsack_receive(struct ospf_lsack_packet *ps, struct proto *p,
struct ospf_iface *ifa, u16 size);
-void ospf_lsack_delay_tx(struct ospf_neighbor *n);
-void ospf_lsa_delay(struct ospf_neighbor *n,struct ospf_lsa_header *h,
- struct proto *p);
+void ospf_lsack_send(struct ospf_neighbor *n, int queue);
+void ospf_lsack_enqueue(struct ospf_neighbor *n,struct ospf_lsa_header *h,
+ struct proto *p, int queue);
#endif /* _BIRD_OSPF_LSACK_H_ */