aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/ip.c
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1999-01-28 01:56:34 +0000
committerBrian Somers <brian@FreeBSD.org>1999-01-28 01:56:34 +0000
commit972a1bcf5db5ee4c5520a1d29d3c81e81bdec84f (patch)
treeabf712056c6d04b9db1781a70efa0546f37a6cbb /usr.sbin/ppp/ip.c
parent485111b55ba6751a1405384bfe9dc696fb7a8e2a (diff)
downloadsrc-972a1bcf5db5ee4c5520a1d29d3c81e81bdec84f.tar.gz
src-972a1bcf5db5ee4c5520a1d29d3c81e81bdec84f.zip
Initial RADIUS support (using libradius). See the man page for
details. Compiling with -DNORADIUS (the default for `release') removes support. TODO: The functionality in libradius::rad_send_request() needs to be supplied as a set of routines so that ppp doesn't have to wait indefinitely for the radius server(s). Instead, we need to get a descriptor back, select() on the descriptor, and ask libradius to service it when necessary. For now, ppp blocks SIGALRM while in rad_send_request(), so it misses PAP/CHAP retries & timeouts if they occur. Only PAP is functional. When CHAP is attempted, libradius complains that no User-Password has been specified... rfc2138 says that it *mustn't* be used for CHAP :-( Sponsored by: Internet Business Solutions Ltd., Switzerland
Notes
Notes: svn path=/head/; revision=43313
Diffstat (limited to 'usr.sbin/ppp/ip.c')
-rw-r--r--usr.sbin/ppp/ip.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ip.c b/usr.sbin/ppp/ip.c
index aa7207de1d88..ac3b54a5dbe8 100644
--- a/usr.sbin/ppp/ip.c
+++ b/usr.sbin/ppp/ip.c
@@ -17,13 +17,13 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: ip.c,v 1.53 1998/09/17 00:45:26 brian Exp $
+ * $Id: ip.c,v 1.54 1998/11/10 00:32:39 brian Exp $
*
* TODO:
* o Return ICMP message for filterd packet
* and optionaly record it into log.
*/
-#include <sys/types.h>
+#include <sys/param.h>
#ifdef __OpenBSD__
#include <sys/socket.h>
#endif
@@ -66,6 +66,9 @@
#include "ccp.h"
#include "link.h"
#include "mp.h"
+#ifndef NORADIUS
+#include "radius.h"
+#endif
#include "bundle.h"
#include "vjcomp.h"
#include "tun.h"