b6217683dc
o Our diagnostic socket has its password set in the `set socket' line only (not in ppp.secret). o Passwords are per server socket (*VarAuthKey are gone) o Authority is per prompt (VarLocalAuth is gone). o Local logging is per prompt. o Add a `show who' command to see who's connected. No identd routine - just a `where the connection came from' display. o SIGUSR1 is disabled for now - we have no way of choosing a password for the socket created :-( Prompts are attached as a list of `struct descriptor's in struct bundle, and serviced under the bundles descriptor service routines. Ultimately, everything should be done like this. Cosmetic: o alphabeticalise SRCS in Makefile. o Add a few comments in command.h TODO: Start checking that we don't overflow the descriptor sets in select() now that we can have any number of descriptors.
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# $Id: Makefile,v 1.36.2.8 1998/04/03 19:21:03 brian Exp $
|
|
|
|
PROG= ppp
|
|
SRCS= arp.c async.c auth.c bundle.c ccp.c chap.c chat.c command.c \
|
|
datalink.c deflate.c defs.c filter.c fsm.c hdlc.c id.c ip.c \
|
|
ipcp.c iplist.c lcp.c link.c log.c lqr.c main.c mbuf.c modem.c \
|
|
mp.c pap.c physical.c pred.c prompt.c route.c server.c sig.c \
|
|
slcompress.c systems.c throughput.c timer.c tun.c vars.c vjcomp.c
|
|
CFLAGS+=-Wall -Wpointer-arith
|
|
LDADD+= -lmd -lcrypt -lutil -lz
|
|
DPADD+= ${LIBMD} ${LIBCRYPT} ${LIBUTIL} ${LIBZ}
|
|
MAN8= ppp.8
|
|
BINMODE=4550
|
|
BINOWN= root
|
|
BINGRP= network
|
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
CFLAGS+=-DRELEASE_CRUNCH
|
|
.endif
|
|
|
|
.if defined(NOALIAS) || defined(RELEASE_CRUNCH)
|
|
CFLAGS+=-DNOALIAS
|
|
.else
|
|
SRCS+= alias_cmd.c loadalias.c
|
|
.endif
|
|
|
|
.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE) && !defined(RELEASE_CRUNCH)
|
|
CFLAGS+=-DHAVE_DES
|
|
SRCS+= chap_ms.c
|
|
LDADD+= -ldes
|
|
DPADD+= ${LIBDES}
|
|
.endif
|
|
|
|
.if defined(RELEASE_CRUNCH)
|
|
# We must create these objects because the crunchgen will link them,
|
|
# and we don't want any unused symbols to spoil the final link.
|
|
SRCS+= alias_cmd.c loadalias.c chap_ms.c
|
|
chap_ms.o alias_cmd.o loadalias.o:
|
|
>null_$*.c
|
|
cc -c -o $@ null_$*.c
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|