From 605c797873ceee12a7eb3561d6e3e7682ded943b Mon Sep 17 00:00:00 2001 From: Kozlov Dmitry Date: Tue, 9 Nov 2010 13:21:32 +0300 Subject: radius: introduced dae-server option to configure Dynamic Authorization Extenstion (DM/CoA) instead of dm_coa_secret --- accel-pptpd/radius/dm_coa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'accel-pptpd/radius/dm_coa.c') diff --git a/accel-pptpd/radius/dm_coa.c b/accel-pptpd/radius/dm_coa.c index e66a3b3..4b89449 100644 --- a/accel-pptpd/radius/dm_coa.c +++ b/accel-pptpd/radius/dm_coa.c @@ -261,9 +261,9 @@ static void __init init(void) return; } addr.sin_family = AF_INET; - addr.sin_port = htons (PD_COA_PORT); - if (conf_nas_ip_address) - addr.sin_addr.s_addr = conf_nas_ip_address; + addr.sin_port = htons (conf_dm_coa_port); + if (conf_dm_coa_server) + addr.sin_addr.s_addr = inet_addr(conf_dm_coa_server); else addr.sin_addr.s_addr = htonl (INADDR_ANY); if (bind (serv.hnd.fd, (struct sockaddr *) &addr, sizeof (addr)) < 0) { -- cgit v1.2.3