]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Doc
authorOndrej Filip <feela@network.cz>
Wed, 7 Jun 2000 22:53:51 +0000 (22:53 +0000)
committerOndrej Filip <feela@network.cz>
Wed, 7 Jun 2000 22:53:51 +0000 (22:53 +0000)
proto/ospf/Doc
proto/ospf/dbdes.c
proto/ospf/dbdes.h

index 3cc298f8d8c7c3ec93317f1fdec3f46fbb2c92ce..40b1534cb9c9f193eee3c0dc77cb94bb5e0e8bb6 100644 (file)
@@ -4,3 +4,4 @@ S neighbor.c
 S iface.c
 S packet.c
 S lsalib.c
+S dbdes.c
index 527273205c666a364b04c8e576deeee9f4e5049a..b92523a2e4d8b239ca6664d99ca2658177de028f 100644 (file)
@@ -1,13 +1,23 @@
 /*
  *     BIRD -- OSPF
  *
- *     (c) 1999-2000 Ondrej Filip <feela@network.cz>
+ *     (c) 1999 - 2000 Ondrej Filip <feela@network.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
 
 #include "ospf.h"
 
+/**
+ * ospf_dbdes_tx - transmit database description packet
+ * @n: neighbor
+ *
+ * Sending of database description packet is described in 10.6 of RFC 2328.
+ * Reception of each packet is acknoledged in sequence number of another.
+ * When I send a packet to neighbor I keep a copy in buffer. If neighbor
+ * does not reply, I don't create new packet but I just send content
+ * of buffer.
+ */
 void
 ospf_dbdes_tx(struct ospf_neighbor *n)
 {
index 09642ffc69fcaff020cfef3fac8de81ffe25ea74..68549c8426323d7d599c5ad9674541b8c5dfa798 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *      BIRD -- OSPF
  *
- *      (c) 1999 Ondrej Filip <feela@network.cz>
+ *      (c) 1999 - 2000 Ondrej Filip <feela@network.cz>
  *
  *      Can be freely distributed and used under the terms of the GNU GPL.
  *