Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Aug 2001 09:05:54 -0700 (PDT)
From:      Brian Somers <brian@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/usr.sbin/ppp ipv6cp.c ipv6cp.h ncp.c ncp.h ncpaddr.c ncpaddr.h Makefile arp.c auth.c bundle.c bundle.h ccp.c chap.c chat.c command.c datalink.c ether.c filter.c filter.h fsm.c hdlc.c iface.c iface.h ip.c ip.h ipcp.c ipcp.h lcp.c link.c log.c ...
Message-ID:  <200108141605.f7EG5st95437@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
brian       2001/08/14 09:05:54 PDT

  Modified files:
    usr.sbin/ppp         Makefile arp.c auth.c bundle.c bundle.h 
                         ccp.c chap.c chat.c command.c datalink.c 
                         ether.c filter.c filter.h fsm.c hdlc.c 
                         iface.c iface.h ip.c ip.h ipcp.c ipcp.h 
                         lcp.c link.c log.c log.h main.c mbuf.c 
                         mbuf.h mp.c mp.h nat_cmd.c pap.c 
                         physical.c ppp.8.m4 prompt.c proto.h 
                         radius.c route.c route.h server.c 
                         slcompress.c tcpmss.c tun.c vjcomp.c 
  Added files:
    usr.sbin/ppp         ipv6cp.c ipv6cp.h ncp.c ncp.h ncpaddr.c 
                         ncpaddr.h 
  Log:
  o Add ipv6 support, abstracting most NCP addresses into opaque
    structures (well, they're treated as opaque).
  
    It's now possible to manage IPv6 interface addresses and routing
    table entries and to filter IPV6 traffic whether encapsulated or
    not.
  
    IPV6CP support is crude for now, and hasn't been tested against
    any other implementations.
  
    RADIUS and IPv6 are independent of eachother for now.
  
    ppp.linkup/ppp.linkdown aren't currently used by IPV6CP
  
  o Understand all protocols(5) in filter rules rather than only a select
    few.
  
  o Allow a mask specification for the ``delete'' command.  It's now
    possible to specifically delete one of two conflicting routes.
  
  o When creating and deleting proxy arp entries, do it for all IPv4
    interface addresses rather than doing it just for the ``current''
    peer address.
  
  o When iface-alias isn't in effect, don't blow away manually (via ``iface
    add'') added interface addresses.
  
  o When listening on a tcp server (diagnostic) socket, bind so that a
    tcp46 socket is created -- allowing both IPv4 and IPv6 connections.
  
  o When displaying ICMP traffic, don't display the icmp type twice.
    When display traffic, display at least some information about unrecognised
    traffic.
  
  o Bump version
  
  Inspired after filtering work by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org>
  
  Revision  Changes    Path
  1.91      +5 -5      src/usr.sbin/ppp/Makefile
  1.41      +5 -2      src/usr.sbin/ppp/arp.c
  1.52      +6 -1      src/usr.sbin/ppp/auth.c
  1.119     +89 -104   src/usr.sbin/ppp/bundle.c
  1.46      +18 -18    src/usr.sbin/ppp/bundle.h
  1.68      +6 -1      src/usr.sbin/ppp/ccp.c
  1.75      +6 -1      src/usr.sbin/ppp/chap.c
  1.74      +6 -1      src/usr.sbin/ppp/chat.c
  1.268     +199 -122  src/usr.sbin/ppp/command.c
  1.67      +7 -2      src/usr.sbin/ppp/datalink.c
  1.21      +5 -1      src/usr.sbin/ppp/ether.c
  1.49      +163 -293  src/usr.sbin/ppp/filter.c
  1.28      +12 -35    src/usr.sbin/ppp/filter.h
  1.59      +16 -2     src/usr.sbin/ppp/fsm.c
  1.48      +3 -1      src/usr.sbin/ppp/hdlc.c
  1.22      +329 -232  src/usr.sbin/ppp/iface.c
  1.7       +12 -13    src/usr.sbin/ppp/iface.h
  1.94      +312 -292  src/usr.sbin/ppp/ip.c
  1.18      +9 -7      src/usr.sbin/ppp/ip.h
  1.109     +278 -327  src/usr.sbin/ppp/ipcp.c
  1.35      +9 -54     src/usr.sbin/ppp/ipcp.h
  1.95      +6 -1      src/usr.sbin/ppp/lcp.c
  1.18      +12 -3     src/usr.sbin/ppp/link.c
  1.50      +3 -2      src/usr.sbin/ppp/log.c
  1.30      +15 -14    src/usr.sbin/ppp/log.h
  1.183     +6 -2      src/usr.sbin/ppp/main.c
  1.42      +8 -8      src/usr.sbin/ppp/mbuf.c
  1.27      +42 -38    src/usr.sbin/ppp/mbuf.h
  1.46      +22 -15    src/usr.sbin/ppp/mp.c
  1.11      +4 -3      src/usr.sbin/ppp/mp.h
  1.56      +8 -3      src/usr.sbin/ppp/nat_cmd.c
  1.46      +6 -1      src/usr.sbin/ppp/pap.c
  1.47      +6 -1      src/usr.sbin/ppp/physical.c
  1.279     +105 -82   src/usr.sbin/ppp/ppp.8.m4
  1.26      +6 -1      src/usr.sbin/ppp/prompt.c
  1.4       +7 -1      src/usr.sbin/ppp/proto.h
  1.23      +22 -14    src/usr.sbin/ppp/radius.c
  1.72      +177 -221  src/usr.sbin/ppp/route.c
  1.18      +20 -18    src/usr.sbin/ppp/route.h
  1.36      +62 -21    src/usr.sbin/ppp/server.c
  1.33      +6 -1      src/usr.sbin/ppp/slcompress.c
  1.4       +5 -1      src/usr.sbin/ppp/tcpmss.c
  1.24      +5 -1      src/usr.sbin/ppp/tun.c
  1.37      +6 -1      src/usr.sbin/ppp/vjcomp.c


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200108141605.f7EG5st95437>