From e7af8ca5435beed83bdc6fed79bc17f15deb84dc Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Mon, 22 Dec 2014 15:22:41 -0500 Subject: [PATCH] INFO on unknown clients, and rate-limit them --- src/main/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/process.c b/src/main/process.c index 9e23ec25ee6b..1e845b49d717 100644 --- a/src/main/process.c +++ b/src/main/process.c @@ -1279,7 +1279,7 @@ static int CC_HINT(nonnull) request_pre_handler(REQUEST *request, UNUSED int act } if (rcode < 0) { - RDEBUG("Dropping packet without response because of error: %s", fr_strerror()); + RATE_LIMIT(INFO("Dropping packet without response because of error: %s", fr_strerror())); request->reply->offset = -2; /* bad authenticator */ return 0; }