From: bodea Date: Thu, 30 Jun 2005 06:13:40 +0000 (+0000) Subject: Don't restrict DAE requests to the configured RADIUS servers X-Git-Tag: release_2_1_2~22 X-Git-Url: http://git.sameswireless.fr/l2tpns.git/commitdiff_plain/fe6177d6ec0e0f81a176a15c372f5a4535ebd8b3 Don't restrict DAE requests to the configured RADIUS servers --- diff --git a/radius.c b/radius.c index 98ea391..0bafc61 100644 --- a/radius.c +++ b/radius.c @@ -1,6 +1,6 @@ // L2TPNS Radius Stuff -char const *cvs_id_radius = "$Id: radius.c,v 1.34 2005/06/28 14:48:28 bodea Exp $"; +char const *cvs_id_radius = "$Id: radius.c,v 1.35 2005/06/30 06:13:40 bodea Exp $"; #include #include @@ -798,18 +798,6 @@ void processdae(uint8_t *buf, int len, struct sockaddr_in *addr, int alen) uint8_t *p; LOG(3, 0, 0, "DAE request from %s\n", fmtaddr(addr->sin_addr.s_addr, 0)); - - // check if DAE is from RADIUS server - for (i = 0; i < config->numradiusservers; i++) - if (config->radiusserver[i] == addr -> sin_addr.s_addr) - break; - - if (i >= config->numradiusservers) - { - LOG(1, 0, 0, "Unknown DAE client %s\n", fmtaddr(addr->sin_addr.s_addr, 0)); - return; - } - LOG_HEX(5, "DAE Request", buf, len); if (len < 20 || len < ntohs(*(uint16_t *) (buf + 2)))