├── .gitignore ├── Changes-2.3 ├── FAQ ├── PLUGINS ├── README ├── README.MPPE ├── README.MSCHAP80 ├── README.MSCHAP81 ├── README.cbcp ├── README.eap-srp ├── README.linux ├── README.pppoe ├── README.pppol2tp ├── README.pwfd ├── README.sol2 ├── SETUP ├── chat ├── .gitignore ├── Makefile.linux ├── Makefile.sol2 ├── chat.8 └── chat.c ├── common ├── zlib.c └── zlib.h ├── configure ├── contrib └── pppgetpass │ ├── Makefile.linux │ ├── pppgetpass.8 │ ├── pppgetpass.gtk.c │ ├── pppgetpass.sh │ └── pppgetpass.vt.c ├── etc.ppp ├── chap-secrets ├── options └── pap-secrets ├── include ├── linux │ ├── if_ppp.h │ ├── ppp-comp.h │ └── ppp_defs.h └── net │ ├── if_ppp.h │ ├── ppp-comp.h │ ├── ppp_defs.h │ ├── pppio.h │ ├── slcompress.h │ └── vjcompress.h ├── linux └── Makefile.top ├── modules ├── bsd-comp.c ├── deflate.c ├── if_ppp.c ├── ppp.c ├── ppp_ahdlc.c ├── ppp_comp.c ├── ppp_mod.h └── vjcompress.c ├── pppd ├── .gitignore ├── Makefile.linux ├── Makefile.sol2 ├── auth.c ├── cbcp.c ├── cbcp.h ├── ccp.c ├── ccp.h ├── chap-md5.c ├── chap-md5.h ├── chap-new.c ├── chap-new.h ├── chap-sync.c ├── chap-sync.h ├── chap-ty.c ├── chap-ty.h ├── chap_ms.c ├── chap_ms.h ├── demand.c ├── eap.c ├── eap.h ├── ecp.c ├── ecp.h ├── eui64.c ├── eui64.h ├── fsm.c ├── fsm.h ├── ipcp.c ├── ipcp.h ├── ipv6cp.c ├── ipv6cp.h ├── ipxcp.c ├── ipxcp.h ├── lcp.c ├── lcp.h ├── magic.c ├── magic.h ├── main.c ├── md4.c ├── md4.h ├── md5.c ├── md5.h ├── mppe.h ├── multilink.c ├── options.c ├── patchlevel.h ├── pathnames.h ├── plugins │ ├── Makefile.linux │ ├── Makefile.sol2 │ ├── minconn.c │ ├── passprompt.c │ ├── passwordfd.c │ ├── pppoatm │ │ ├── COPYING │ │ ├── Makefile.linux │ │ ├── ans.c │ │ ├── atm.h │ │ ├── atmres.h │ │ ├── atmsap.h │ │ ├── misc.c │ │ ├── pppoatm.c │ │ ├── text2atm.c │ │ └── text2qos.c │ ├── pppol2tp │ │ ├── Makefile.linux │ │ ├── l2tp_event.h │ │ ├── openl2tp.c │ │ └── pppol2tp.c │ ├── radius │ │ ├── COPYRIGHT │ │ ├── Makefile.linux │ │ ├── avpair.c │ │ ├── buildreq.c │ │ ├── clientid.c │ │ ├── config.c │ │ ├── dict.c │ │ ├── etc │ │ │ ├── dictionary │ │ │ ├── dictionary.ascend │ │ │ ├── dictionary.compat │ │ │ ├── dictionary.merit │ │ │ ├── dictionary.microsoft │ │ │ ├── issue │ │ │ ├── port-id-map │ │ │ ├── radiusclient.conf │ │ │ ├── radiusclient.conf.in │ │ │ ├── realms │ │ │ └── servers │ │ ├── includes.h │ │ ├── ip_util.c │ │ ├── lock.c │ │ ├── md5.c │ │ ├── options.h │ │ ├── pathnames.h │ │ ├── pppd-radattr.8 │ │ ├── pppd-radius.8 │ │ ├── radattr.c │ │ ├── radius.c │ │ ├── radiusclient.h │ │ ├── radrealms.c │ │ ├── sendserver.c │ │ └── util.c │ ├── rp-pppoe │ │ ├── .gitignore │ │ ├── Makefile.linux │ │ ├── common.c │ │ ├── config.h │ │ ├── debug.c │ │ ├── discovery.c │ │ ├── if.c │ │ ├── plugin.c │ │ ├── pppoe-discovery.c │ │ └── pppoe.h │ └── winbind.c ├── ppp.pam ├── pppcrypt.c ├── pppcrypt.h ├── pppd.8 ├── pppd.h ├── session.c ├── session.h ├── sha1.c ├── sha1.h ├── spinlock.c ├── spinlock.h ├── srp-entry.8 ├── srp-entry.c ├── sys-linux.c ├── sys-solaris.c ├── tdb.c ├── tdb.h ├── tty.c ├── ty_request.c ├── ty_request.h ├── upap.c ├── upap.h └── utils.c ├── pppdump ├── .gitignore ├── Makefile.linux ├── Makefile.sol2 ├── bsd-comp.c ├── deflate.c ├── ppp-comp.h ├── pppdump.8 ├── pppdump.c ├── zlib.c └── zlib.h ├── pppstats ├── .gitignore ├── Makefile.linux ├── Makefile.sol2 ├── pppstats.8 └── pppstats.c ├── scripts ├── README ├── autopppd ├── callback ├── chat-callback ├── chatchat │ ├── README │ └── chatchat.c ├── ip-down.local.add ├── ip-up.local.add ├── ipv6-down.sample ├── ipv6-up.sample ├── options-rsh-loc ├── options-rsh-rem ├── options-ssh-loc ├── options-ssh-rem ├── plog ├── poff ├── pon ├── pon.1 ├── ppp-off ├── ppp-on ├── ppp-on-dialer ├── ppp-on-rsh ├── ppp-on-ssh ├── redialer └── secure-card └── solaris ├── Makedefs ├── Makedefs.gcc ├── Makedefs.sol2 ├── Makefile.sol2 ├── Makefile.sol2-64 ├── Makefile.sol2-64x ├── Makefile.sol2gcc ├── Makefile.sol2gcc-64 ├── Makefile.sol2gcc-64x ├── Makefile.top ├── ppp.c ├── ppp.conf ├── ppp_ahdlc.c ├── ppp_ahdlc_mod.c ├── ppp_comp.c ├── ppp_comp_mod.c ├── ppp_mod.c └── ppp_mod.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /Changes-2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/Changes-2.3 -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/FAQ -------------------------------------------------------------------------------- /PLUGINS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/PLUGINS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README -------------------------------------------------------------------------------- /README.MPPE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.MPPE -------------------------------------------------------------------------------- /README.MSCHAP80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.MSCHAP80 -------------------------------------------------------------------------------- /README.MSCHAP81: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.MSCHAP81 -------------------------------------------------------------------------------- /README.cbcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.cbcp -------------------------------------------------------------------------------- /README.eap-srp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.eap-srp -------------------------------------------------------------------------------- /README.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.linux -------------------------------------------------------------------------------- /README.pppoe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.pppoe -------------------------------------------------------------------------------- /README.pppol2tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.pppol2tp -------------------------------------------------------------------------------- /README.pwfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.pwfd -------------------------------------------------------------------------------- /README.sol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/README.sol2 -------------------------------------------------------------------------------- /SETUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/SETUP -------------------------------------------------------------------------------- /chat/.gitignore: -------------------------------------------------------------------------------- 1 | chat 2 | -------------------------------------------------------------------------------- /chat/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/chat/Makefile.linux -------------------------------------------------------------------------------- /chat/Makefile.sol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/chat/Makefile.sol2 -------------------------------------------------------------------------------- /chat/chat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/chat/chat.8 -------------------------------------------------------------------------------- /chat/chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/chat/chat.c -------------------------------------------------------------------------------- /common/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/common/zlib.c -------------------------------------------------------------------------------- /common/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/common/zlib.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/configure -------------------------------------------------------------------------------- /contrib/pppgetpass/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/contrib/pppgetpass/Makefile.linux -------------------------------------------------------------------------------- /contrib/pppgetpass/pppgetpass.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/contrib/pppgetpass/pppgetpass.8 -------------------------------------------------------------------------------- /contrib/pppgetpass/pppgetpass.gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/contrib/pppgetpass/pppgetpass.gtk.c -------------------------------------------------------------------------------- /contrib/pppgetpass/pppgetpass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/contrib/pppgetpass/pppgetpass.sh -------------------------------------------------------------------------------- /contrib/pppgetpass/pppgetpass.vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/contrib/pppgetpass/pppgetpass.vt.c -------------------------------------------------------------------------------- /etc.ppp/chap-secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/etc.ppp/chap-secrets -------------------------------------------------------------------------------- /etc.ppp/options: -------------------------------------------------------------------------------- 1 | lock 2 | -------------------------------------------------------------------------------- /etc.ppp/pap-secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/etc.ppp/pap-secrets -------------------------------------------------------------------------------- /include/linux/if_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/linux/if_ppp.h -------------------------------------------------------------------------------- /include/linux/ppp-comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/linux/ppp-comp.h -------------------------------------------------------------------------------- /include/linux/ppp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/linux/ppp_defs.h -------------------------------------------------------------------------------- /include/net/if_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/net/if_ppp.h -------------------------------------------------------------------------------- /include/net/ppp-comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/net/ppp-comp.h -------------------------------------------------------------------------------- /include/net/ppp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/net/ppp_defs.h -------------------------------------------------------------------------------- /include/net/pppio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/net/pppio.h -------------------------------------------------------------------------------- /include/net/slcompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/net/slcompress.h -------------------------------------------------------------------------------- /include/net/vjcompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/include/net/vjcompress.h -------------------------------------------------------------------------------- /linux/Makefile.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/linux/Makefile.top -------------------------------------------------------------------------------- /modules/bsd-comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/modules/bsd-comp.c -------------------------------------------------------------------------------- /modules/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/modules/deflate.c -------------------------------------------------------------------------------- /modules/if_ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/modules/if_ppp.c -------------------------------------------------------------------------------- /modules/ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/modules/ppp.c -------------------------------------------------------------------------------- /modules/ppp_ahdlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/modules/ppp_ahdlc.c -------------------------------------------------------------------------------- /modules/ppp_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/modules/ppp_comp.c -------------------------------------------------------------------------------- /modules/ppp_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/modules/ppp_mod.h -------------------------------------------------------------------------------- /modules/vjcompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/modules/vjcompress.c -------------------------------------------------------------------------------- /pppd/.gitignore: -------------------------------------------------------------------------------- 1 | pppd 2 | -------------------------------------------------------------------------------- /pppd/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/Makefile.linux -------------------------------------------------------------------------------- /pppd/Makefile.sol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/Makefile.sol2 -------------------------------------------------------------------------------- /pppd/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/auth.c -------------------------------------------------------------------------------- /pppd/cbcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/cbcp.c -------------------------------------------------------------------------------- /pppd/cbcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/cbcp.h -------------------------------------------------------------------------------- /pppd/ccp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ccp.c -------------------------------------------------------------------------------- /pppd/ccp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ccp.h -------------------------------------------------------------------------------- /pppd/chap-md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap-md5.c -------------------------------------------------------------------------------- /pppd/chap-md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap-md5.h -------------------------------------------------------------------------------- /pppd/chap-new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap-new.c -------------------------------------------------------------------------------- /pppd/chap-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap-new.h -------------------------------------------------------------------------------- /pppd/chap-sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap-sync.c -------------------------------------------------------------------------------- /pppd/chap-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap-sync.h -------------------------------------------------------------------------------- /pppd/chap-ty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap-ty.c -------------------------------------------------------------------------------- /pppd/chap-ty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap-ty.h -------------------------------------------------------------------------------- /pppd/chap_ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap_ms.c -------------------------------------------------------------------------------- /pppd/chap_ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/chap_ms.h -------------------------------------------------------------------------------- /pppd/demand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/demand.c -------------------------------------------------------------------------------- /pppd/eap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/eap.c -------------------------------------------------------------------------------- /pppd/eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/eap.h -------------------------------------------------------------------------------- /pppd/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ecp.c -------------------------------------------------------------------------------- /pppd/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ecp.h -------------------------------------------------------------------------------- /pppd/eui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/eui64.c -------------------------------------------------------------------------------- /pppd/eui64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/eui64.h -------------------------------------------------------------------------------- /pppd/fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/fsm.c -------------------------------------------------------------------------------- /pppd/fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/fsm.h -------------------------------------------------------------------------------- /pppd/ipcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ipcp.c -------------------------------------------------------------------------------- /pppd/ipcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ipcp.h -------------------------------------------------------------------------------- /pppd/ipv6cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ipv6cp.c -------------------------------------------------------------------------------- /pppd/ipv6cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ipv6cp.h -------------------------------------------------------------------------------- /pppd/ipxcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ipxcp.c -------------------------------------------------------------------------------- /pppd/ipxcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ipxcp.h -------------------------------------------------------------------------------- /pppd/lcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/lcp.c -------------------------------------------------------------------------------- /pppd/lcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/lcp.h -------------------------------------------------------------------------------- /pppd/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/magic.c -------------------------------------------------------------------------------- /pppd/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/magic.h -------------------------------------------------------------------------------- /pppd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/main.c -------------------------------------------------------------------------------- /pppd/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/md4.c -------------------------------------------------------------------------------- /pppd/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/md4.h -------------------------------------------------------------------------------- /pppd/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/md5.c -------------------------------------------------------------------------------- /pppd/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/md5.h -------------------------------------------------------------------------------- /pppd/mppe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/mppe.h -------------------------------------------------------------------------------- /pppd/multilink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/multilink.c -------------------------------------------------------------------------------- /pppd/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/options.c -------------------------------------------------------------------------------- /pppd/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/patchlevel.h -------------------------------------------------------------------------------- /pppd/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/pathnames.h -------------------------------------------------------------------------------- /pppd/plugins/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/Makefile.linux -------------------------------------------------------------------------------- /pppd/plugins/Makefile.sol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/Makefile.sol2 -------------------------------------------------------------------------------- /pppd/plugins/minconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/minconn.c -------------------------------------------------------------------------------- /pppd/plugins/passprompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/passprompt.c -------------------------------------------------------------------------------- /pppd/plugins/passwordfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/passwordfd.c -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/COPYING -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/Makefile.linux -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/ans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/ans.c -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/atm.h -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/atmres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/atmres.h -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/atmsap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/atmsap.h -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/misc.c -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/pppoatm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/pppoatm.c -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/text2atm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/text2atm.c -------------------------------------------------------------------------------- /pppd/plugins/pppoatm/text2qos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppoatm/text2qos.c -------------------------------------------------------------------------------- /pppd/plugins/pppol2tp/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppol2tp/Makefile.linux -------------------------------------------------------------------------------- /pppd/plugins/pppol2tp/l2tp_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppol2tp/l2tp_event.h -------------------------------------------------------------------------------- /pppd/plugins/pppol2tp/openl2tp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppol2tp/openl2tp.c -------------------------------------------------------------------------------- /pppd/plugins/pppol2tp/pppol2tp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/pppol2tp/pppol2tp.c -------------------------------------------------------------------------------- /pppd/plugins/radius/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/COPYRIGHT -------------------------------------------------------------------------------- /pppd/plugins/radius/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/Makefile.linux -------------------------------------------------------------------------------- /pppd/plugins/radius/avpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/avpair.c -------------------------------------------------------------------------------- /pppd/plugins/radius/buildreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/buildreq.c -------------------------------------------------------------------------------- /pppd/plugins/radius/clientid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/clientid.c -------------------------------------------------------------------------------- /pppd/plugins/radius/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/config.c -------------------------------------------------------------------------------- /pppd/plugins/radius/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/dict.c -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/dictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/dictionary -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/dictionary.ascend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/dictionary.ascend -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/dictionary.compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/dictionary.compat -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/dictionary.merit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/dictionary.merit -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/dictionary.microsoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/dictionary.microsoft -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/issue -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/port-id-map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/port-id-map -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/radiusclient.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/radiusclient.conf -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/radiusclient.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/radiusclient.conf.in -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/realms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/realms -------------------------------------------------------------------------------- /pppd/plugins/radius/etc/servers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/etc/servers -------------------------------------------------------------------------------- /pppd/plugins/radius/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/includes.h -------------------------------------------------------------------------------- /pppd/plugins/radius/ip_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/ip_util.c -------------------------------------------------------------------------------- /pppd/plugins/radius/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/lock.c -------------------------------------------------------------------------------- /pppd/plugins/radius/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/md5.c -------------------------------------------------------------------------------- /pppd/plugins/radius/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/options.h -------------------------------------------------------------------------------- /pppd/plugins/radius/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/pathnames.h -------------------------------------------------------------------------------- /pppd/plugins/radius/pppd-radattr.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/pppd-radattr.8 -------------------------------------------------------------------------------- /pppd/plugins/radius/pppd-radius.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/pppd-radius.8 -------------------------------------------------------------------------------- /pppd/plugins/radius/radattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/radattr.c -------------------------------------------------------------------------------- /pppd/plugins/radius/radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/radius.c -------------------------------------------------------------------------------- /pppd/plugins/radius/radiusclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/radiusclient.h -------------------------------------------------------------------------------- /pppd/plugins/radius/radrealms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/radrealms.c -------------------------------------------------------------------------------- /pppd/plugins/radius/sendserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/sendserver.c -------------------------------------------------------------------------------- /pppd/plugins/radius/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/radius/util.c -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/.gitignore: -------------------------------------------------------------------------------- 1 | pppoe-discovery 2 | -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/Makefile.linux -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/common.c -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/config.h -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/debug.c -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/discovery.c -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/if.c -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/plugin.c -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/pppoe-discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/pppoe-discovery.c -------------------------------------------------------------------------------- /pppd/plugins/rp-pppoe/pppoe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/rp-pppoe/pppoe.h -------------------------------------------------------------------------------- /pppd/plugins/winbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/plugins/winbind.c -------------------------------------------------------------------------------- /pppd/ppp.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ppp.pam -------------------------------------------------------------------------------- /pppd/pppcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/pppcrypt.c -------------------------------------------------------------------------------- /pppd/pppcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/pppcrypt.h -------------------------------------------------------------------------------- /pppd/pppd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/pppd.8 -------------------------------------------------------------------------------- /pppd/pppd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/pppd.h -------------------------------------------------------------------------------- /pppd/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/session.c -------------------------------------------------------------------------------- /pppd/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/session.h -------------------------------------------------------------------------------- /pppd/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/sha1.c -------------------------------------------------------------------------------- /pppd/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/sha1.h -------------------------------------------------------------------------------- /pppd/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/spinlock.c -------------------------------------------------------------------------------- /pppd/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/spinlock.h -------------------------------------------------------------------------------- /pppd/srp-entry.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/srp-entry.8 -------------------------------------------------------------------------------- /pppd/srp-entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/srp-entry.c -------------------------------------------------------------------------------- /pppd/sys-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/sys-linux.c -------------------------------------------------------------------------------- /pppd/sys-solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/sys-solaris.c -------------------------------------------------------------------------------- /pppd/tdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/tdb.c -------------------------------------------------------------------------------- /pppd/tdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/tdb.h -------------------------------------------------------------------------------- /pppd/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/tty.c -------------------------------------------------------------------------------- /pppd/ty_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ty_request.c -------------------------------------------------------------------------------- /pppd/ty_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/ty_request.h -------------------------------------------------------------------------------- /pppd/upap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/upap.c -------------------------------------------------------------------------------- /pppd/upap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/upap.h -------------------------------------------------------------------------------- /pppd/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppd/utils.c -------------------------------------------------------------------------------- /pppdump/.gitignore: -------------------------------------------------------------------------------- 1 | pppdump 2 | -------------------------------------------------------------------------------- /pppdump/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/Makefile.linux -------------------------------------------------------------------------------- /pppdump/Makefile.sol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/Makefile.sol2 -------------------------------------------------------------------------------- /pppdump/bsd-comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/bsd-comp.c -------------------------------------------------------------------------------- /pppdump/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/deflate.c -------------------------------------------------------------------------------- /pppdump/ppp-comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/ppp-comp.h -------------------------------------------------------------------------------- /pppdump/pppdump.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/pppdump.8 -------------------------------------------------------------------------------- /pppdump/pppdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/pppdump.c -------------------------------------------------------------------------------- /pppdump/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/zlib.c -------------------------------------------------------------------------------- /pppdump/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppdump/zlib.h -------------------------------------------------------------------------------- /pppstats/.gitignore: -------------------------------------------------------------------------------- 1 | pppstats 2 | -------------------------------------------------------------------------------- /pppstats/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppstats/Makefile.linux -------------------------------------------------------------------------------- /pppstats/Makefile.sol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppstats/Makefile.sol2 -------------------------------------------------------------------------------- /pppstats/pppstats.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppstats/pppstats.8 -------------------------------------------------------------------------------- /pppstats/pppstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/pppstats/pppstats.c -------------------------------------------------------------------------------- /scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/README -------------------------------------------------------------------------------- /scripts/autopppd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/autopppd -------------------------------------------------------------------------------- /scripts/callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/callback -------------------------------------------------------------------------------- /scripts/chat-callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/chat-callback -------------------------------------------------------------------------------- /scripts/chatchat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/chatchat/README -------------------------------------------------------------------------------- /scripts/chatchat/chatchat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/chatchat/chatchat.c -------------------------------------------------------------------------------- /scripts/ip-down.local.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ip-down.local.add -------------------------------------------------------------------------------- /scripts/ip-up.local.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ip-up.local.add -------------------------------------------------------------------------------- /scripts/ipv6-down.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ipv6-down.sample -------------------------------------------------------------------------------- /scripts/ipv6-up.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ipv6-up.sample -------------------------------------------------------------------------------- /scripts/options-rsh-loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/options-rsh-loc -------------------------------------------------------------------------------- /scripts/options-rsh-rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/options-rsh-rem -------------------------------------------------------------------------------- /scripts/options-ssh-loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/options-ssh-loc -------------------------------------------------------------------------------- /scripts/options-ssh-rem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/options-ssh-rem -------------------------------------------------------------------------------- /scripts/plog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/plog -------------------------------------------------------------------------------- /scripts/poff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/poff -------------------------------------------------------------------------------- /scripts/pon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/pon -------------------------------------------------------------------------------- /scripts/pon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/pon.1 -------------------------------------------------------------------------------- /scripts/ppp-off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ppp-off -------------------------------------------------------------------------------- /scripts/ppp-on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ppp-on -------------------------------------------------------------------------------- /scripts/ppp-on-dialer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ppp-on-dialer -------------------------------------------------------------------------------- /scripts/ppp-on-rsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ppp-on-rsh -------------------------------------------------------------------------------- /scripts/ppp-on-ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/ppp-on-ssh -------------------------------------------------------------------------------- /scripts/redialer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/redialer -------------------------------------------------------------------------------- /scripts/secure-card: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/scripts/secure-card -------------------------------------------------------------------------------- /solaris/Makedefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makedefs -------------------------------------------------------------------------------- /solaris/Makedefs.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makedefs.gcc -------------------------------------------------------------------------------- /solaris/Makedefs.sol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makedefs.sol2 -------------------------------------------------------------------------------- /solaris/Makefile.sol2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makefile.sol2 -------------------------------------------------------------------------------- /solaris/Makefile.sol2-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makefile.sol2-64 -------------------------------------------------------------------------------- /solaris/Makefile.sol2-64x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makefile.sol2-64x -------------------------------------------------------------------------------- /solaris/Makefile.sol2gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makefile.sol2gcc -------------------------------------------------------------------------------- /solaris/Makefile.sol2gcc-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makefile.sol2gcc-64 -------------------------------------------------------------------------------- /solaris/Makefile.sol2gcc-64x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makefile.sol2gcc-64x -------------------------------------------------------------------------------- /solaris/Makefile.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/Makefile.top -------------------------------------------------------------------------------- /solaris/ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/ppp.c -------------------------------------------------------------------------------- /solaris/ppp.conf: -------------------------------------------------------------------------------- 1 | name="ppp" parent="pseudo" instance=0; 2 | -------------------------------------------------------------------------------- /solaris/ppp_ahdlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/ppp_ahdlc.c -------------------------------------------------------------------------------- /solaris/ppp_ahdlc_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/ppp_ahdlc_mod.c -------------------------------------------------------------------------------- /solaris/ppp_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/ppp_comp.c -------------------------------------------------------------------------------- /solaris/ppp_comp_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/ppp_comp_mod.c -------------------------------------------------------------------------------- /solaris/ppp_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/ppp_mod.c -------------------------------------------------------------------------------- /solaris/ppp_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Noisyfox/ty_pppd_legacy/HEAD/solaris/ppp_mod.h --------------------------------------------------------------------------------