├── AUTHORS ├── COPYING ├── ChangeLog ├── DEVELOPERS ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── Portfile ├── README ├── TODO ├── USING ├── aclocal.m4 ├── autogen.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── debian ├── changelog ├── compat ├── control ├── copyright ├── gbp.conf ├── libsstp-client-dev.install ├── libsstp-client0.install ├── libsstp-client0.symbols ├── rules ├── shlibs ├── source │ └── format ├── sstp-client.install ├── sstp-client.manpages ├── sstp-client.postinst ├── sstp-client.postrm ├── sstp-client.preinst └── sstp-client.substvars ├── depcomp ├── include ├── Makefile.am ├── Makefile.in ├── sstp-api.h ├── sstp-common.h ├── sstp-compat.h └── sstp-log.h ├── install-sh ├── ltmain.sh ├── m4 ├── ax_check_library.m4 ├── ax_check_openssl.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 └── pkg.m4 ├── missing ├── src ├── Makefile.am ├── Makefile.in ├── libsstp-api │ ├── Makefile.am │ ├── Makefile.in │ └── sstp-api.c ├── libsstp-compat │ ├── Makefile.am │ ├── Makefile.in │ └── sstp-compat.c ├── libsstp-log │ ├── Makefile.am │ ├── Makefile.in │ ├── sstp-log-file.c │ ├── sstp-log-private.h │ ├── sstp-log-std.c │ ├── sstp-log-syslog.c │ └── sstp-log.c ├── pppd-plugin │ ├── Makefile.am │ ├── Makefile.in │ └── sstp-plugin.c ├── sstp-buff.c ├── sstp-buff.h ├── sstp-chap.c ├── sstp-chap.h ├── sstp-client.c ├── sstp-client.h ├── sstp-cmac.c ├── sstp-cmac.h ├── sstp-event.c ├── sstp-event.h ├── sstp-fcs.c ├── sstp-fcs.h ├── sstp-http.c ├── sstp-http.h ├── sstp-option.c ├── sstp-option.h ├── sstp-packet.c ├── sstp-packet.h ├── sstp-pppd.c ├── sstp-pppd.h ├── sstp-private.h ├── sstp-route.c ├── sstp-route.h ├── sstp-state.c ├── sstp-state.h ├── sstp-stream.c ├── sstp-stream.h ├── sstp-task.c ├── sstp-task.h ├── sstp-util.c └── sstp-util.h ├── sstp-client-1.0.pc.in ├── sstp-client.spec ├── sstp-test-nopty.example ├── sstp-test.example ├── sstpc.8 └── support ├── HACKING.TXT ├── N3ZZ-DC1-SSTP-TEST-NET.KEY ├── N3ZZ-DC1-SSTP-TEST-NET.PEM ├── SSTP-TEST-N3ZZ-DC1-CA.PEM ├── SSTP-TEST.PCAP ├── [MS-DTYP].pdf ├── [MS-SSTP].pdf ├── deploying sstp remote access step by step guide.doc ├── peer-sstp-example-nopty.txt └── peer-sstp-example.txt /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/ChangeLog -------------------------------------------------------------------------------- /DEVELOPERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/DEVELOPERS -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/NEWS -------------------------------------------------------------------------------- /Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/Portfile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/TODO -------------------------------------------------------------------------------- /USING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/USING -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/autogen.sh -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | pristine-tar = True 3 | debian-branch = experimental 4 | -------------------------------------------------------------------------------- /debian/libsstp-client-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/libsstp-client-dev.install -------------------------------------------------------------------------------- /debian/libsstp-client0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/libsstp-client0.install -------------------------------------------------------------------------------- /debian/libsstp-client0.symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/libsstp-client0.symbols -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/shlibs: -------------------------------------------------------------------------------- 1 | libsstp_api 0 2 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/sstp-client.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/sstp-client.install -------------------------------------------------------------------------------- /debian/sstp-client.manpages: -------------------------------------------------------------------------------- 1 | sstpc.8 2 | -------------------------------------------------------------------------------- /debian/sstp-client.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/sstp-client.postinst -------------------------------------------------------------------------------- /debian/sstp-client.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/sstp-client.postrm -------------------------------------------------------------------------------- /debian/sstp-client.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/sstp-client.preinst -------------------------------------------------------------------------------- /debian/sstp-client.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/debian/sstp-client.substvars -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/depcomp -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/include/Makefile.in -------------------------------------------------------------------------------- /include/sstp-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/include/sstp-api.h -------------------------------------------------------------------------------- /include/sstp-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/include/sstp-common.h -------------------------------------------------------------------------------- /include/sstp-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/include/sstp-compat.h -------------------------------------------------------------------------------- /include/sstp-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/include/sstp-log.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/install-sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/ltmain.sh -------------------------------------------------------------------------------- /m4/ax_check_library.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/m4/ax_check_library.m4 -------------------------------------------------------------------------------- /m4/ax_check_openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/m4/ax_check_openssl.m4 -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/missing -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/libsstp-api/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-api/Makefile.am -------------------------------------------------------------------------------- /src/libsstp-api/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-api/Makefile.in -------------------------------------------------------------------------------- /src/libsstp-api/sstp-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-api/sstp-api.c -------------------------------------------------------------------------------- /src/libsstp-compat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-compat/Makefile.am -------------------------------------------------------------------------------- /src/libsstp-compat/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-compat/Makefile.in -------------------------------------------------------------------------------- /src/libsstp-compat/sstp-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-compat/sstp-compat.c -------------------------------------------------------------------------------- /src/libsstp-log/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-log/Makefile.am -------------------------------------------------------------------------------- /src/libsstp-log/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-log/Makefile.in -------------------------------------------------------------------------------- /src/libsstp-log/sstp-log-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-log/sstp-log-file.c -------------------------------------------------------------------------------- /src/libsstp-log/sstp-log-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-log/sstp-log-private.h -------------------------------------------------------------------------------- /src/libsstp-log/sstp-log-std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-log/sstp-log-std.c -------------------------------------------------------------------------------- /src/libsstp-log/sstp-log-syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-log/sstp-log-syslog.c -------------------------------------------------------------------------------- /src/libsstp-log/sstp-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/libsstp-log/sstp-log.c -------------------------------------------------------------------------------- /src/pppd-plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/pppd-plugin/Makefile.am -------------------------------------------------------------------------------- /src/pppd-plugin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/pppd-plugin/Makefile.in -------------------------------------------------------------------------------- /src/pppd-plugin/sstp-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/pppd-plugin/sstp-plugin.c -------------------------------------------------------------------------------- /src/sstp-buff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-buff.c -------------------------------------------------------------------------------- /src/sstp-buff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-buff.h -------------------------------------------------------------------------------- /src/sstp-chap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-chap.c -------------------------------------------------------------------------------- /src/sstp-chap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-chap.h -------------------------------------------------------------------------------- /src/sstp-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-client.c -------------------------------------------------------------------------------- /src/sstp-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-client.h -------------------------------------------------------------------------------- /src/sstp-cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-cmac.c -------------------------------------------------------------------------------- /src/sstp-cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-cmac.h -------------------------------------------------------------------------------- /src/sstp-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-event.c -------------------------------------------------------------------------------- /src/sstp-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-event.h -------------------------------------------------------------------------------- /src/sstp-fcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-fcs.c -------------------------------------------------------------------------------- /src/sstp-fcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-fcs.h -------------------------------------------------------------------------------- /src/sstp-http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-http.c -------------------------------------------------------------------------------- /src/sstp-http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-http.h -------------------------------------------------------------------------------- /src/sstp-option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-option.c -------------------------------------------------------------------------------- /src/sstp-option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-option.h -------------------------------------------------------------------------------- /src/sstp-packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-packet.c -------------------------------------------------------------------------------- /src/sstp-packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-packet.h -------------------------------------------------------------------------------- /src/sstp-pppd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-pppd.c -------------------------------------------------------------------------------- /src/sstp-pppd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-pppd.h -------------------------------------------------------------------------------- /src/sstp-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-private.h -------------------------------------------------------------------------------- /src/sstp-route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-route.c -------------------------------------------------------------------------------- /src/sstp-route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-route.h -------------------------------------------------------------------------------- /src/sstp-state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-state.c -------------------------------------------------------------------------------- /src/sstp-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-state.h -------------------------------------------------------------------------------- /src/sstp-stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-stream.c -------------------------------------------------------------------------------- /src/sstp-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-stream.h -------------------------------------------------------------------------------- /src/sstp-task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-task.c -------------------------------------------------------------------------------- /src/sstp-task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-task.h -------------------------------------------------------------------------------- /src/sstp-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-util.c -------------------------------------------------------------------------------- /src/sstp-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/src/sstp-util.h -------------------------------------------------------------------------------- /sstp-client-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/sstp-client-1.0.pc.in -------------------------------------------------------------------------------- /sstp-client.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/sstp-client.spec -------------------------------------------------------------------------------- /sstp-test-nopty.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/sstp-test-nopty.example -------------------------------------------------------------------------------- /sstp-test.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/sstp-test.example -------------------------------------------------------------------------------- /sstpc.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/sstpc.8 -------------------------------------------------------------------------------- /support/HACKING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/HACKING.TXT -------------------------------------------------------------------------------- /support/N3ZZ-DC1-SSTP-TEST-NET.KEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/N3ZZ-DC1-SSTP-TEST-NET.KEY -------------------------------------------------------------------------------- /support/N3ZZ-DC1-SSTP-TEST-NET.PEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/N3ZZ-DC1-SSTP-TEST-NET.PEM -------------------------------------------------------------------------------- /support/SSTP-TEST-N3ZZ-DC1-CA.PEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/SSTP-TEST-N3ZZ-DC1-CA.PEM -------------------------------------------------------------------------------- /support/SSTP-TEST.PCAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/SSTP-TEST.PCAP -------------------------------------------------------------------------------- /support/[MS-DTYP].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/[MS-DTYP].pdf -------------------------------------------------------------------------------- /support/[MS-SSTP].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/[MS-SSTP].pdf -------------------------------------------------------------------------------- /support/deploying sstp remote access step by step guide.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/deploying sstp remote access step by step guide.doc -------------------------------------------------------------------------------- /support/peer-sstp-example-nopty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/peer-sstp-example-nopty.txt -------------------------------------------------------------------------------- /support/peer-sstp-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reliablehosting/sstp-client/HEAD/support/peer-sstp-example.txt --------------------------------------------------------------------------------