mirror of
https://github.com/paulusmack/ppp.git
synced 2024-11-27 05:23:38 +08:00
7bb8beb860
- If encryption is required, don't bring up IP/IPv6/IPX until the encryption negotiation has completed. - Shut down LCP if the peer sends an LCP ConfRej instead of CCP ConfRej to our MPPE offer. This fixes a bug where the server could not enforce use of encryption in some cases. - Don't send the M=<message> part of an MS-CHAPv2 success packet to peers that don't know how to deal with it. This allows pre-win2k systems to authenticate. - Don't shut down lcp if MPPE was present in peer's CCP offer along with other options. This allows pre-win2k systems to do MPPE (they offer Stac LZS with MPPE). - Add the beginnings of ecp.c. - Other minor changes.
25 lines
538 B
Makefile
25 lines
538 B
Makefile
#
|
|
# Makefile for pppd under Solaris 2.
|
|
# $Id: Makefile.svr4,v 1.15 2002/05/21 17:26:48 dfs Exp $
|
|
#
|
|
|
|
include ../svr4/Makedefs
|
|
|
|
CFLAGS = -DSVR4 -DHAS_SHADOW -I../include $(COPTS)
|
|
LIBS = -lsocket -lnsl -lc -L/usr/ucblib -lucb
|
|
|
|
all: pppd
|
|
|
|
OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o ecp.o \
|
|
auth.o options.o demand.o utils.o sys-svr4.o
|
|
|
|
pppd: $(OBJS)
|
|
$(CC) -o pppd $(OBJS) $(LIBS)
|
|
|
|
install:
|
|
$(INSTALL) -f $(BINDIR) -m 4755 -u root pppd
|
|
$(INSTALL) -f $(MANDIR)/man8 -m 444 pppd.8
|
|
|
|
clean:
|
|
rm -f $(OBJS) pppd *~ core
|