diff options
author | Martin Mares <mj@ucw.cz> | 2000-04-01 11:17:33 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-04-01 11:17:33 +0200 |
commit | f8809249906811683e7e8d2a7b8cdcccde86742a (patch) | |
tree | f0aff2f9cedd220e062f81e9b68c6e6aaf4fcdd8 /proto/bgp/bgp.c | |
parent | 85810613993913831822b84ab7a9792a88fc7a8f (diff) | |
download | bird-f8809249906811683e7e8d2a7b8cdcccde86742a.tar bird-f8809249906811683e7e8d2a7b8cdcccde86742a.zip |
BGP now handles incoming routes (IPv4 only).
Diffstat (limited to 'proto/bgp/bgp.c')
-rw-r--r-- | proto/bgp/bgp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index e95e334..9bef2e5 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -31,6 +31,7 @@ static void bgp_setup_sk(struct bgp_proto *p, struct bgp_conn *conn, sock *s); static void bgp_rt_notify(struct proto *P, net *n, rte *new, rte *old, ea_list *tmpa) { + DBG("BGP: Got route %I/%d\n", n->n.prefix, n->n.pxlen); } static struct proto * |