mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
Turn on client callback support (CBCP), it seems to be complete.
This commit is contained in:
parent
54c521fbd8
commit
f622ba291d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=28601
@ -4,14 +4,22 @@ CFLAGS+= -DHAVE_PATHS_H
|
||||
|
||||
PROG= pppd
|
||||
SRCS= main.c magic.c fsm.c lcp.c ipcp.c ipxcp.c upap.c chap.c ccp.c \
|
||||
demand.c auth.c options.c sys-bsd.c
|
||||
demand.c auth.c options.c cbcp.c sys-bsd.c
|
||||
MAN8= pppd.8
|
||||
BINMODE=4555
|
||||
BINOWN= root
|
||||
|
||||
# as per handbook policies section
|
||||
MAINTAINER= peter@freebsd.org
|
||||
|
||||
# Support SPX/IPX - not quite ready
|
||||
#CFLAGS+=-DIPX_CHANGE
|
||||
#SRCS+= ipxcp.c
|
||||
|
||||
# Callback Control Protocol
|
||||
CFLAGS+=-DCBCP_SUPPORT
|
||||
SRCS+= cbcp.c
|
||||
|
||||
LDADD= -lcrypt -lutil -lmd
|
||||
DPADD= ${LIBCRYPT} ${LIBUTIL} ${LIBMD}
|
||||
|
||||
|
@ -159,7 +159,7 @@ static int setescape __P((char **));
|
||||
static int setmru __P((char **));
|
||||
static int setmtu __P((char **));
|
||||
#ifdef CBCP_SUPPORT
|
||||
static int setcbcp __P((char *));
|
||||
static int setcbcp __P((char **));
|
||||
#endif
|
||||
static int nomru __P((char **));
|
||||
static int nopcomp __P((char **));
|
||||
|
Loading…
Reference in New Issue
Block a user