mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 20:58:44 +00:00
Doc
This commit is contained in:
parent
e9ab0b4212
commit
eee9cefd8c
@ -4,3 +4,4 @@ S neighbor.c
|
|||||||
S iface.c
|
S iface.c
|
||||||
S packet.c
|
S packet.c
|
||||||
S lsalib.c
|
S lsalib.c
|
||||||
|
S dbdes.c
|
||||||
|
@ -1,13 +1,23 @@
|
|||||||
/*
|
/*
|
||||||
* BIRD -- OSPF
|
* 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.
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ospf.h"
|
#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
|
void
|
||||||
ospf_dbdes_tx(struct ospf_neighbor *n)
|
ospf_dbdes_tx(struct ospf_neighbor *n)
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* BIRD -- OSPF
|
* 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.
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user