summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospfd/lsreq.c
diff options
context:
space:
mode:
authornorby <norby@openbsd.org>2005-05-26 20:05:29 +0000
committernorby <norby@openbsd.org>2005-05-26 20:05:29 +0000
commit674e87822f299294090f9812eacae4e65c366521 (patch)
treee19184a4dcee864b2c2915fed8951daf177e1cfe /usr.sbin/ospfd/lsreq.c
parentRemove unneeded debugging stuff when handling LS ack. (diff)
downloadwireguard-openbsd-674e87822f299294090f9812eacae4e65c366521.tar.xz
wireguard-openbsd-674e87822f299294090f9812eacae4e65c366521.zip
Remove unneeded debug messages from LS request.
Diffstat (limited to 'usr.sbin/ospfd/lsreq.c')
-rw-r--r--usr.sbin/ospfd/lsreq.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/usr.sbin/ospfd/lsreq.c b/usr.sbin/ospfd/lsreq.c
index 6ecf0b3e30e..759434f840d 100644
--- a/usr.sbin/ospfd/lsreq.c
+++ b/usr.sbin/ospfd/lsreq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lsreq.c,v 1.9 2005/05/26 19:54:49 norby Exp $ */
+/* $OpenBSD: lsreq.c,v 1.10 2005/05/26 20:05:29 norby Exp $ */
/*
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
@@ -93,8 +93,6 @@ fail:
void
recv_ls_req(struct nbr *nbr, char *buf, u_int16_t len)
{
- log_debug("recv_ls_req: neighbor ID %s", inet_ntoa(nbr->id));
-
switch (nbr->state) {
case NBR_STA_DOWN:
case NBR_STA_ATTEMPT:
@@ -199,8 +197,6 @@ ls_req_tx_timer(int fd, short event, void *arg)
struct nbr *nbr = arg;
struct timeval tv;
- log_debug("ls_req_tx_timer: neighbor ID %s", inet_ntoa(nbr->id));
-
switch (nbr->state) {
case NBR_STA_DOWN:
case NBR_STA_ATTEMPT:
@@ -225,8 +221,6 @@ ls_req_tx_timer(int fd, short event, void *arg)
if (nbr->state == NBR_STA_LOAD) {
timerclear(&tv);
tv.tv_sec = nbr->iface->rxmt_interval;
- log_debug("ls_req_tx_timer: reschedule neighbor ID %s",
- inet_ntoa(nbr->id));
evtimer_add(&nbr->lsreq_tx_timer, &tv);
}
}
@@ -239,7 +233,6 @@ start_ls_req_tx_timer(struct nbr *nbr)
if (nbr == nbr->iface->self)
return (0);
- log_debug("start_ls_req_tx_timer: neighbor ID %s", inet_ntoa(nbr->id));
timerclear(&tv);
return (evtimer_add(&nbr->lsreq_tx_timer, &tv));
@@ -251,7 +244,5 @@ stop_ls_req_tx_timer(struct nbr *nbr)
if (nbr == nbr->iface->self)
return (0);
- log_debug("stop_ls_req_tx_timer: neighbor ID %s", inet_ntoa(nbr->id));
-
return (evtimer_del(&nbr->lsreq_tx_timer));
}