diff options
author | Martin Mares <mj@ucw.cz> | 2000-03-20 22:50:17 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-03-20 22:50:17 +0100 |
commit | c01e37416d09a92bf838250a15fe99fdc48bc010 (patch) | |
tree | c10e7963b18993c97a3f33746677d6814477ea9a /proto/bgp/packets.c | |
parent | 1cf716f0751ce1d146d6d5114cb36686844d4817 (diff) | |
download | bird-c01e37416d09a92bf838250a15fe99fdc48bc010.tar bird-c01e37416d09a92bf838250a15fe99fdc48bc010.zip |
Started work on BGP. Wrote main part of the connection handling code.
Diffstat (limited to 'proto/bgp/packets.c')
-rw-r--r-- | proto/bgp/packets.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/proto/bgp/packets.c b/proto/bgp/packets.c new file mode 100644 index 0000000..a5f52b8 --- /dev/null +++ b/proto/bgp/packets.c @@ -0,0 +1,15 @@ +/* + * BIRD -- BGP Packet Processing + * + * (c) 2000 Martin Mares <mj@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +#include "nest/bird.h" +#include "nest/iface.h" +#include "nest/protocol.h" +#include "nest/route.h" +#include "conf/conf.h" + +#include "bgp.h" |