├── .gitattributes ├── .gitignore ├── .mailmap ├── .svncommitters ├── AUTHORS ├── Android.mk ├── COPYING ├── COPYRIGHT.GPL ├── ChangeLog ├── INSTALL ├── INSTALL-win32.txt ├── Makefile.am ├── NEWS ├── PORTS ├── README ├── README.IPv6 ├── README.polarssl ├── TODO.IPv6 ├── compat.m4 ├── config-msvc-version.h.in ├── config-msvc.h ├── config-version.h ├── config-version.h.in ├── config.h ├── configure.ac ├── configure_h.awk ├── configure_log.awk ├── contrib ├── OCSP_check │ └── OCSP_check.sh ├── README ├── multilevel-init.patch ├── openvpn-fwmarkroute-1.00 │ ├── README │ ├── fwmarkroute.down │ └── fwmarkroute.up └── pull-resolv-conf │ ├── client.down │ └── client.up ├── debug ├── doval ├── dovalns └── valgrind-suppress ├── distro ├── Makefile.am └── rpm │ ├── Makefile.am │ ├── openvpn.init.d.rhel │ ├── openvpn.init.d.suse │ └── openvpn.spec.in ├── doc ├── Makefile.am ├── README.plugins ├── doxygen │ ├── doc_compression.h │ ├── doc_control_processor.h │ ├── doc_control_tls.h │ ├── doc_data_control.h │ ├── doc_data_crypto.h │ ├── doc_eventloop.h │ ├── doc_external_multiplexer.h │ ├── doc_fragmentation.h │ ├── doc_internal_multiplexer.h │ ├── doc_key_generation.h │ ├── doc_mainpage.h │ ├── doc_memory_management.h │ ├── doc_protocol_overview.h │ ├── doc_reliable.h │ ├── doc_tunnel_state.h │ └── openvpn.doxyfile ├── management-notes.txt └── openvpn.8 ├── include ├── Makefile.am └── openvpn-plugin.h ├── m4 ├── .keep ├── ax_emptyarray.m4 ├── ax_socklen_t.m4 ├── ax_varargs.m4 └── pkg.m4 ├── msvc-build.bat ├── msvc-dev.bat ├── msvc-env.bat ├── openvpn.sln ├── sample ├── Makefile.am ├── sample-config-files │ ├── README │ ├── client.conf │ ├── firewall.sh │ ├── home.up │ ├── loopback-client │ ├── loopback-server │ ├── office.up │ ├── openvpn-shutdown.sh │ ├── openvpn-startup.sh │ ├── server.conf │ ├── static-home.conf │ ├── static-office.conf │ ├── tls-home.conf │ ├── tls-office.conf │ ├── xinetd-client-config │ └── xinetd-server-config ├── sample-keys │ ├── README │ ├── ca.crt │ ├── ca.key │ ├── client.crt │ ├── client.key │ ├── dh1024.pem │ ├── pass.crt │ ├── pass.key │ ├── pkcs12.p12 │ ├── server.crt │ └── server.key ├── sample-plugins │ ├── defer │ │ ├── README │ │ ├── build │ │ ├── simple.c │ │ ├── simple.def │ │ └── winbuild │ ├── log │ │ ├── build │ │ ├── log.c │ │ ├── log_v3.c │ │ └── winbuild │ └── simple │ │ ├── README │ │ ├── build │ │ ├── simple.c │ │ ├── simple.def │ │ └── winbuild ├── sample-scripts │ ├── auth-pam.pl │ ├── bridge-start │ ├── bridge-stop │ ├── ucn.pl │ └── verify-cn └── sample-windows │ └── sample.ovpn ├── src ├── Makefile.am ├── compat │ ├── Makefile.am │ ├── compat-basename.c │ ├── compat-daemon.c │ ├── compat-dirname.c │ ├── compat-gettimeofday.c │ ├── compat-inet_ntop.c │ ├── compat-inet_pton.c │ ├── compat-stdbool.h │ ├── compat.h │ ├── compat.vcxproj │ └── compat.vcxproj.filters ├── openvpn │ ├── Makefile.am │ ├── base64.c │ ├── base64.h │ ├── basic.h │ ├── buffer.c │ ├── buffer.h │ ├── circ_list.h │ ├── clinat.c │ ├── clinat.h │ ├── common.h │ ├── console.c │ ├── console.h │ ├── crypto.c │ ├── crypto.h │ ├── crypto_backend.h │ ├── crypto_openssl.c │ ├── crypto_openssl.h │ ├── crypto_polarssl.c │ ├── crypto_polarssl.h │ ├── cryptoapi.c │ ├── cryptoapi.h │ ├── dhcp.c │ ├── dhcp.h │ ├── errlevel.h │ ├── error.c │ ├── error.h │ ├── event.c │ ├── event.h │ ├── fdmisc.c │ ├── fdmisc.h │ ├── forward-inline.h │ ├── forward.c │ ├── forward.h │ ├── fragment.c │ ├── fragment.h │ ├── gremlin.c │ ├── gremlin.h │ ├── helper.c │ ├── helper.h │ ├── httpdigest.c │ ├── httpdigest.h │ ├── init.c │ ├── init.h │ ├── integer.h │ ├── interval.c │ ├── interval.h │ ├── list.c │ ├── list.h │ ├── lladdr.c │ ├── lladdr.h │ ├── lzo.c │ ├── lzo.h │ ├── manage.c │ ├── manage.h │ ├── mbuf.c │ ├── mbuf.h │ ├── memdbg.h │ ├── misc.c │ ├── misc.h │ ├── mroute.c │ ├── mroute.h │ ├── mss.c │ ├── mss.h │ ├── mstats.c │ ├── mstats.h │ ├── mtcp.c │ ├── mtcp.h │ ├── mtu.c │ ├── mtu.h │ ├── mudp.c │ ├── mudp.h │ ├── multi.c │ ├── multi.h │ ├── ntlm.c │ ├── ntlm.h │ ├── occ-inline.h │ ├── occ.c │ ├── occ.h │ ├── openvpn.c │ ├── openvpn.h │ ├── openvpn.vcxproj │ ├── openvpn.vcxproj.filters │ ├── openvpn_win32_resources.rc │ ├── options.c │ ├── options.h │ ├── otime.c │ ├── otime.h │ ├── packet_id.c │ ├── packet_id.h │ ├── perf.c │ ├── perf.h │ ├── pf-inline.h │ ├── pf.c │ ├── pf.h │ ├── ping-inline.h │ ├── ping.c │ ├── ping.h │ ├── pkcs11.c │ ├── pkcs11.h │ ├── pkcs11_backend.h │ ├── pkcs11_openssl.c │ ├── pkcs11_polarssl.c │ ├── platform.c │ ├── platform.h │ ├── plugin.c │ ├── plugin.h │ ├── pool.c │ ├── pool.h │ ├── proto.c │ ├── proto.h │ ├── proxy.c │ ├── proxy.h │ ├── ps.c │ ├── ps.h │ ├── push.c │ ├── push.h │ ├── pushlist.h │ ├── reliable.c │ ├── reliable.h │ ├── route.c │ ├── route.h │ ├── schedule.c │ ├── schedule.h │ ├── session_id.c │ ├── session_id.h │ ├── shaper.c │ ├── shaper.h │ ├── sig.c │ ├── sig.h │ ├── socket.c │ ├── socket.h │ ├── socks.c │ ├── socks.h │ ├── ssl.c │ ├── ssl.h │ ├── ssl_backend.h │ ├── ssl_common.h │ ├── ssl_openssl.c │ ├── ssl_openssl.h │ ├── ssl_polarssl.c │ ├── ssl_polarssl.h │ ├── ssl_verify.c │ ├── ssl_verify.h │ ├── ssl_verify_backend.h │ ├── ssl_verify_openssl.c │ ├── ssl_verify_openssl.h │ ├── ssl_verify_polarssl.c │ ├── ssl_verify_polarssl.h │ ├── status.c │ ├── status.h │ ├── syshead.h │ ├── tun.c │ ├── tun.h │ ├── win32.c │ └── win32.h ├── openvpnserv │ ├── Makefile.am │ ├── openvpnserv.c │ ├── openvpnserv.vcxproj │ ├── openvpnserv.vcxproj.filters │ ├── openvpnserv_resources.rc │ ├── service.c │ └── service.h └── plugins │ ├── Makefile.am │ ├── auth-pam │ ├── Makefile.am │ ├── README.auth-pam │ ├── auth-pam.c │ ├── auth-pam.exports │ ├── pamdl.c │ └── pamdl.h │ └── down-root │ ├── Makefile.am │ ├── README.down-root │ ├── down-root.c │ └── down-root.exports ├── tests ├── Makefile.am ├── t_client.rc-sample ├── t_client.sh.in ├── t_cltsrv-down.sh ├── t_cltsrv.sh └── t_lpback.sh ├── version.m4 └── version.sh.in /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/.mailmap -------------------------------------------------------------------------------- /.svncommitters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/.svncommitters -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/AUTHORS -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/Android.mk -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/COPYING -------------------------------------------------------------------------------- /COPYRIGHT.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/COPYRIGHT.GPL -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL-win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/INSTALL-win32.txt -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PORTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/PORTS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/README -------------------------------------------------------------------------------- /README.IPv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/README.IPv6 -------------------------------------------------------------------------------- /README.polarssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/README.polarssl -------------------------------------------------------------------------------- /TODO.IPv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/TODO.IPv6 -------------------------------------------------------------------------------- /compat.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/compat.m4 -------------------------------------------------------------------------------- /config-msvc-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/config-msvc-version.h.in -------------------------------------------------------------------------------- /config-msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/config-msvc.h -------------------------------------------------------------------------------- /config-version.h: -------------------------------------------------------------------------------- 1 | #define CONFIGURE_GIT_REVISION "refs/heads/v2.3.4/024454a068a0da" 2 | 3 | -------------------------------------------------------------------------------- /config-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/config-version.h.in -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/config.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/configure.ac -------------------------------------------------------------------------------- /configure_h.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/configure_h.awk -------------------------------------------------------------------------------- /configure_log.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/configure_log.awk -------------------------------------------------------------------------------- /contrib/OCSP_check/OCSP_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/contrib/OCSP_check/OCSP_check.sh -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/multilevel-init.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/contrib/multilevel-init.patch -------------------------------------------------------------------------------- /contrib/openvpn-fwmarkroute-1.00/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/contrib/openvpn-fwmarkroute-1.00/README -------------------------------------------------------------------------------- /contrib/openvpn-fwmarkroute-1.00/fwmarkroute.down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/contrib/openvpn-fwmarkroute-1.00/fwmarkroute.down -------------------------------------------------------------------------------- /contrib/openvpn-fwmarkroute-1.00/fwmarkroute.up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/contrib/openvpn-fwmarkroute-1.00/fwmarkroute.up -------------------------------------------------------------------------------- /contrib/pull-resolv-conf/client.down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/contrib/pull-resolv-conf/client.down -------------------------------------------------------------------------------- /contrib/pull-resolv-conf/client.up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/contrib/pull-resolv-conf/client.up -------------------------------------------------------------------------------- /debug/doval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/debug/doval -------------------------------------------------------------------------------- /debug/dovalns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/debug/dovalns -------------------------------------------------------------------------------- /debug/valgrind-suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/debug/valgrind-suppress -------------------------------------------------------------------------------- /distro/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/distro/Makefile.am -------------------------------------------------------------------------------- /distro/rpm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/distro/rpm/Makefile.am -------------------------------------------------------------------------------- /distro/rpm/openvpn.init.d.rhel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/distro/rpm/openvpn.init.d.rhel -------------------------------------------------------------------------------- /distro/rpm/openvpn.init.d.suse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/distro/rpm/openvpn.init.d.suse -------------------------------------------------------------------------------- /distro/rpm/openvpn.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/distro/rpm/openvpn.spec.in -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/README.plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/README.plugins -------------------------------------------------------------------------------- /doc/doxygen/doc_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_compression.h -------------------------------------------------------------------------------- /doc/doxygen/doc_control_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_control_processor.h -------------------------------------------------------------------------------- /doc/doxygen/doc_control_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_control_tls.h -------------------------------------------------------------------------------- /doc/doxygen/doc_data_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_data_control.h -------------------------------------------------------------------------------- /doc/doxygen/doc_data_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_data_crypto.h -------------------------------------------------------------------------------- /doc/doxygen/doc_eventloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_eventloop.h -------------------------------------------------------------------------------- /doc/doxygen/doc_external_multiplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_external_multiplexer.h -------------------------------------------------------------------------------- /doc/doxygen/doc_fragmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_fragmentation.h -------------------------------------------------------------------------------- /doc/doxygen/doc_internal_multiplexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_internal_multiplexer.h -------------------------------------------------------------------------------- /doc/doxygen/doc_key_generation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_key_generation.h -------------------------------------------------------------------------------- /doc/doxygen/doc_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_mainpage.h -------------------------------------------------------------------------------- /doc/doxygen/doc_memory_management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_memory_management.h -------------------------------------------------------------------------------- /doc/doxygen/doc_protocol_overview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_protocol_overview.h -------------------------------------------------------------------------------- /doc/doxygen/doc_reliable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_reliable.h -------------------------------------------------------------------------------- /doc/doxygen/doc_tunnel_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/doc_tunnel_state.h -------------------------------------------------------------------------------- /doc/doxygen/openvpn.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/doxygen/openvpn.doxyfile -------------------------------------------------------------------------------- /doc/management-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/management-notes.txt -------------------------------------------------------------------------------- /doc/openvpn.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/doc/openvpn.8 -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/openvpn-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/include/openvpn-plugin.h -------------------------------------------------------------------------------- /m4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m4/ax_emptyarray.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/m4/ax_emptyarray.m4 -------------------------------------------------------------------------------- /m4/ax_socklen_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/m4/ax_socklen_t.m4 -------------------------------------------------------------------------------- /m4/ax_varargs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/m4/ax_varargs.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /msvc-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/msvc-build.bat -------------------------------------------------------------------------------- /msvc-dev.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/msvc-dev.bat -------------------------------------------------------------------------------- /msvc-env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/msvc-env.bat -------------------------------------------------------------------------------- /openvpn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/openvpn.sln -------------------------------------------------------------------------------- /sample/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/Makefile.am -------------------------------------------------------------------------------- /sample/sample-config-files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/README -------------------------------------------------------------------------------- /sample/sample-config-files/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/client.conf -------------------------------------------------------------------------------- /sample/sample-config-files/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/firewall.sh -------------------------------------------------------------------------------- /sample/sample-config-files/home.up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/home.up -------------------------------------------------------------------------------- /sample/sample-config-files/loopback-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/loopback-client -------------------------------------------------------------------------------- /sample/sample-config-files/loopback-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/loopback-server -------------------------------------------------------------------------------- /sample/sample-config-files/office.up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/office.up -------------------------------------------------------------------------------- /sample/sample-config-files/openvpn-shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/openvpn-shutdown.sh -------------------------------------------------------------------------------- /sample/sample-config-files/openvpn-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/openvpn-startup.sh -------------------------------------------------------------------------------- /sample/sample-config-files/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/server.conf -------------------------------------------------------------------------------- /sample/sample-config-files/static-home.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/static-home.conf -------------------------------------------------------------------------------- /sample/sample-config-files/static-office.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/static-office.conf -------------------------------------------------------------------------------- /sample/sample-config-files/tls-home.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/tls-home.conf -------------------------------------------------------------------------------- /sample/sample-config-files/tls-office.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/tls-office.conf -------------------------------------------------------------------------------- /sample/sample-config-files/xinetd-client-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/xinetd-client-config -------------------------------------------------------------------------------- /sample/sample-config-files/xinetd-server-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-config-files/xinetd-server-config -------------------------------------------------------------------------------- /sample/sample-keys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/README -------------------------------------------------------------------------------- /sample/sample-keys/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/ca.crt -------------------------------------------------------------------------------- /sample/sample-keys/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/ca.key -------------------------------------------------------------------------------- /sample/sample-keys/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/client.crt -------------------------------------------------------------------------------- /sample/sample-keys/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/client.key -------------------------------------------------------------------------------- /sample/sample-keys/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/dh1024.pem -------------------------------------------------------------------------------- /sample/sample-keys/pass.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/pass.crt -------------------------------------------------------------------------------- /sample/sample-keys/pass.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/pass.key -------------------------------------------------------------------------------- /sample/sample-keys/pkcs12.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/pkcs12.p12 -------------------------------------------------------------------------------- /sample/sample-keys/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/server.crt -------------------------------------------------------------------------------- /sample/sample-keys/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-keys/server.key -------------------------------------------------------------------------------- /sample/sample-plugins/defer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/defer/README -------------------------------------------------------------------------------- /sample/sample-plugins/defer/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/defer/build -------------------------------------------------------------------------------- /sample/sample-plugins/defer/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/defer/simple.c -------------------------------------------------------------------------------- /sample/sample-plugins/defer/simple.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/defer/simple.def -------------------------------------------------------------------------------- /sample/sample-plugins/defer/winbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/defer/winbuild -------------------------------------------------------------------------------- /sample/sample-plugins/log/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/log/build -------------------------------------------------------------------------------- /sample/sample-plugins/log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/log/log.c -------------------------------------------------------------------------------- /sample/sample-plugins/log/log_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/log/log_v3.c -------------------------------------------------------------------------------- /sample/sample-plugins/log/winbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/log/winbuild -------------------------------------------------------------------------------- /sample/sample-plugins/simple/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/simple/README -------------------------------------------------------------------------------- /sample/sample-plugins/simple/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/simple/build -------------------------------------------------------------------------------- /sample/sample-plugins/simple/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/simple/simple.c -------------------------------------------------------------------------------- /sample/sample-plugins/simple/simple.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/simple/simple.def -------------------------------------------------------------------------------- /sample/sample-plugins/simple/winbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-plugins/simple/winbuild -------------------------------------------------------------------------------- /sample/sample-scripts/auth-pam.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-scripts/auth-pam.pl -------------------------------------------------------------------------------- /sample/sample-scripts/bridge-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-scripts/bridge-start -------------------------------------------------------------------------------- /sample/sample-scripts/bridge-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-scripts/bridge-stop -------------------------------------------------------------------------------- /sample/sample-scripts/ucn.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-scripts/ucn.pl -------------------------------------------------------------------------------- /sample/sample-scripts/verify-cn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-scripts/verify-cn -------------------------------------------------------------------------------- /sample/sample-windows/sample.ovpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/sample/sample-windows/sample.ovpn -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/compat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/Makefile.am -------------------------------------------------------------------------------- /src/compat/compat-basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat-basename.c -------------------------------------------------------------------------------- /src/compat/compat-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat-daemon.c -------------------------------------------------------------------------------- /src/compat/compat-dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat-dirname.c -------------------------------------------------------------------------------- /src/compat/compat-gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat-gettimeofday.c -------------------------------------------------------------------------------- /src/compat/compat-inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat-inet_ntop.c -------------------------------------------------------------------------------- /src/compat/compat-inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat-inet_pton.c -------------------------------------------------------------------------------- /src/compat/compat-stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat-stdbool.h -------------------------------------------------------------------------------- /src/compat/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat.h -------------------------------------------------------------------------------- /src/compat/compat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat.vcxproj -------------------------------------------------------------------------------- /src/compat/compat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/compat/compat.vcxproj.filters -------------------------------------------------------------------------------- /src/openvpn/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/Makefile.am -------------------------------------------------------------------------------- /src/openvpn/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/base64.c -------------------------------------------------------------------------------- /src/openvpn/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/base64.h -------------------------------------------------------------------------------- /src/openvpn/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/basic.h -------------------------------------------------------------------------------- /src/openvpn/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/buffer.c -------------------------------------------------------------------------------- /src/openvpn/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/buffer.h -------------------------------------------------------------------------------- /src/openvpn/circ_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/circ_list.h -------------------------------------------------------------------------------- /src/openvpn/clinat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/clinat.c -------------------------------------------------------------------------------- /src/openvpn/clinat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/clinat.h -------------------------------------------------------------------------------- /src/openvpn/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/common.h -------------------------------------------------------------------------------- /src/openvpn/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/console.c -------------------------------------------------------------------------------- /src/openvpn/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/console.h -------------------------------------------------------------------------------- /src/openvpn/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/crypto.c -------------------------------------------------------------------------------- /src/openvpn/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/crypto.h -------------------------------------------------------------------------------- /src/openvpn/crypto_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/crypto_backend.h -------------------------------------------------------------------------------- /src/openvpn/crypto_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/crypto_openssl.c -------------------------------------------------------------------------------- /src/openvpn/crypto_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/crypto_openssl.h -------------------------------------------------------------------------------- /src/openvpn/crypto_polarssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/crypto_polarssl.c -------------------------------------------------------------------------------- /src/openvpn/crypto_polarssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/crypto_polarssl.h -------------------------------------------------------------------------------- /src/openvpn/cryptoapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/cryptoapi.c -------------------------------------------------------------------------------- /src/openvpn/cryptoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/cryptoapi.h -------------------------------------------------------------------------------- /src/openvpn/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/dhcp.c -------------------------------------------------------------------------------- /src/openvpn/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/dhcp.h -------------------------------------------------------------------------------- /src/openvpn/errlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/errlevel.h -------------------------------------------------------------------------------- /src/openvpn/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/error.c -------------------------------------------------------------------------------- /src/openvpn/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/error.h -------------------------------------------------------------------------------- /src/openvpn/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/event.c -------------------------------------------------------------------------------- /src/openvpn/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/event.h -------------------------------------------------------------------------------- /src/openvpn/fdmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/fdmisc.c -------------------------------------------------------------------------------- /src/openvpn/fdmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/fdmisc.h -------------------------------------------------------------------------------- /src/openvpn/forward-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/forward-inline.h -------------------------------------------------------------------------------- /src/openvpn/forward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/forward.c -------------------------------------------------------------------------------- /src/openvpn/forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/forward.h -------------------------------------------------------------------------------- /src/openvpn/fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/fragment.c -------------------------------------------------------------------------------- /src/openvpn/fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/fragment.h -------------------------------------------------------------------------------- /src/openvpn/gremlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/gremlin.c -------------------------------------------------------------------------------- /src/openvpn/gremlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/gremlin.h -------------------------------------------------------------------------------- /src/openvpn/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/helper.c -------------------------------------------------------------------------------- /src/openvpn/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/helper.h -------------------------------------------------------------------------------- /src/openvpn/httpdigest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/httpdigest.c -------------------------------------------------------------------------------- /src/openvpn/httpdigest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/httpdigest.h -------------------------------------------------------------------------------- /src/openvpn/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/init.c -------------------------------------------------------------------------------- /src/openvpn/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/init.h -------------------------------------------------------------------------------- /src/openvpn/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/integer.h -------------------------------------------------------------------------------- /src/openvpn/interval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/interval.c -------------------------------------------------------------------------------- /src/openvpn/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/interval.h -------------------------------------------------------------------------------- /src/openvpn/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/list.c -------------------------------------------------------------------------------- /src/openvpn/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/list.h -------------------------------------------------------------------------------- /src/openvpn/lladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/lladdr.c -------------------------------------------------------------------------------- /src/openvpn/lladdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/lladdr.h -------------------------------------------------------------------------------- /src/openvpn/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/lzo.c -------------------------------------------------------------------------------- /src/openvpn/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/lzo.h -------------------------------------------------------------------------------- /src/openvpn/manage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/manage.c -------------------------------------------------------------------------------- /src/openvpn/manage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/manage.h -------------------------------------------------------------------------------- /src/openvpn/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mbuf.c -------------------------------------------------------------------------------- /src/openvpn/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mbuf.h -------------------------------------------------------------------------------- /src/openvpn/memdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/memdbg.h -------------------------------------------------------------------------------- /src/openvpn/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/misc.c -------------------------------------------------------------------------------- /src/openvpn/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/misc.h -------------------------------------------------------------------------------- /src/openvpn/mroute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mroute.c -------------------------------------------------------------------------------- /src/openvpn/mroute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mroute.h -------------------------------------------------------------------------------- /src/openvpn/mss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mss.c -------------------------------------------------------------------------------- /src/openvpn/mss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mss.h -------------------------------------------------------------------------------- /src/openvpn/mstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mstats.c -------------------------------------------------------------------------------- /src/openvpn/mstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mstats.h -------------------------------------------------------------------------------- /src/openvpn/mtcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mtcp.c -------------------------------------------------------------------------------- /src/openvpn/mtcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mtcp.h -------------------------------------------------------------------------------- /src/openvpn/mtu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mtu.c -------------------------------------------------------------------------------- /src/openvpn/mtu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mtu.h -------------------------------------------------------------------------------- /src/openvpn/mudp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mudp.c -------------------------------------------------------------------------------- /src/openvpn/mudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/mudp.h -------------------------------------------------------------------------------- /src/openvpn/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/multi.c -------------------------------------------------------------------------------- /src/openvpn/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/multi.h -------------------------------------------------------------------------------- /src/openvpn/ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ntlm.c -------------------------------------------------------------------------------- /src/openvpn/ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ntlm.h -------------------------------------------------------------------------------- /src/openvpn/occ-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/occ-inline.h -------------------------------------------------------------------------------- /src/openvpn/occ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/occ.c -------------------------------------------------------------------------------- /src/openvpn/occ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/occ.h -------------------------------------------------------------------------------- /src/openvpn/openvpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/openvpn.c -------------------------------------------------------------------------------- /src/openvpn/openvpn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/openvpn.h -------------------------------------------------------------------------------- /src/openvpn/openvpn.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/openvpn.vcxproj -------------------------------------------------------------------------------- /src/openvpn/openvpn.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/openvpn.vcxproj.filters -------------------------------------------------------------------------------- /src/openvpn/openvpn_win32_resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/openvpn_win32_resources.rc -------------------------------------------------------------------------------- /src/openvpn/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/options.c -------------------------------------------------------------------------------- /src/openvpn/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/options.h -------------------------------------------------------------------------------- /src/openvpn/otime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/otime.c -------------------------------------------------------------------------------- /src/openvpn/otime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/otime.h -------------------------------------------------------------------------------- /src/openvpn/packet_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/packet_id.c -------------------------------------------------------------------------------- /src/openvpn/packet_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/packet_id.h -------------------------------------------------------------------------------- /src/openvpn/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/perf.c -------------------------------------------------------------------------------- /src/openvpn/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/perf.h -------------------------------------------------------------------------------- /src/openvpn/pf-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pf-inline.h -------------------------------------------------------------------------------- /src/openvpn/pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pf.c -------------------------------------------------------------------------------- /src/openvpn/pf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pf.h -------------------------------------------------------------------------------- /src/openvpn/ping-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ping-inline.h -------------------------------------------------------------------------------- /src/openvpn/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ping.c -------------------------------------------------------------------------------- /src/openvpn/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ping.h -------------------------------------------------------------------------------- /src/openvpn/pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pkcs11.c -------------------------------------------------------------------------------- /src/openvpn/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pkcs11.h -------------------------------------------------------------------------------- /src/openvpn/pkcs11_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pkcs11_backend.h -------------------------------------------------------------------------------- /src/openvpn/pkcs11_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pkcs11_openssl.c -------------------------------------------------------------------------------- /src/openvpn/pkcs11_polarssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pkcs11_polarssl.c -------------------------------------------------------------------------------- /src/openvpn/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/platform.c -------------------------------------------------------------------------------- /src/openvpn/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/platform.h -------------------------------------------------------------------------------- /src/openvpn/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/plugin.c -------------------------------------------------------------------------------- /src/openvpn/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/plugin.h -------------------------------------------------------------------------------- /src/openvpn/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pool.c -------------------------------------------------------------------------------- /src/openvpn/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pool.h -------------------------------------------------------------------------------- /src/openvpn/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/proto.c -------------------------------------------------------------------------------- /src/openvpn/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/proto.h -------------------------------------------------------------------------------- /src/openvpn/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/proxy.c -------------------------------------------------------------------------------- /src/openvpn/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/proxy.h -------------------------------------------------------------------------------- /src/openvpn/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ps.c -------------------------------------------------------------------------------- /src/openvpn/ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ps.h -------------------------------------------------------------------------------- /src/openvpn/push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/push.c -------------------------------------------------------------------------------- /src/openvpn/push.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/push.h -------------------------------------------------------------------------------- /src/openvpn/pushlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/pushlist.h -------------------------------------------------------------------------------- /src/openvpn/reliable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/reliable.c -------------------------------------------------------------------------------- /src/openvpn/reliable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/reliable.h -------------------------------------------------------------------------------- /src/openvpn/route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/route.c -------------------------------------------------------------------------------- /src/openvpn/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/route.h -------------------------------------------------------------------------------- /src/openvpn/schedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/schedule.c -------------------------------------------------------------------------------- /src/openvpn/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/schedule.h -------------------------------------------------------------------------------- /src/openvpn/session_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/session_id.c -------------------------------------------------------------------------------- /src/openvpn/session_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/session_id.h -------------------------------------------------------------------------------- /src/openvpn/shaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/shaper.c -------------------------------------------------------------------------------- /src/openvpn/shaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/shaper.h -------------------------------------------------------------------------------- /src/openvpn/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/sig.c -------------------------------------------------------------------------------- /src/openvpn/sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/sig.h -------------------------------------------------------------------------------- /src/openvpn/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/socket.c -------------------------------------------------------------------------------- /src/openvpn/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/socket.h -------------------------------------------------------------------------------- /src/openvpn/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/socks.c -------------------------------------------------------------------------------- /src/openvpn/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/socks.h -------------------------------------------------------------------------------- /src/openvpn/ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl.c -------------------------------------------------------------------------------- /src/openvpn/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl.h -------------------------------------------------------------------------------- /src/openvpn/ssl_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_backend.h -------------------------------------------------------------------------------- /src/openvpn/ssl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_common.h -------------------------------------------------------------------------------- /src/openvpn/ssl_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_openssl.c -------------------------------------------------------------------------------- /src/openvpn/ssl_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_openssl.h -------------------------------------------------------------------------------- /src/openvpn/ssl_polarssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_polarssl.c -------------------------------------------------------------------------------- /src/openvpn/ssl_polarssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_polarssl.h -------------------------------------------------------------------------------- /src/openvpn/ssl_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_verify.c -------------------------------------------------------------------------------- /src/openvpn/ssl_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_verify.h -------------------------------------------------------------------------------- /src/openvpn/ssl_verify_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_verify_backend.h -------------------------------------------------------------------------------- /src/openvpn/ssl_verify_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_verify_openssl.c -------------------------------------------------------------------------------- /src/openvpn/ssl_verify_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_verify_openssl.h -------------------------------------------------------------------------------- /src/openvpn/ssl_verify_polarssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_verify_polarssl.c -------------------------------------------------------------------------------- /src/openvpn/ssl_verify_polarssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/ssl_verify_polarssl.h -------------------------------------------------------------------------------- /src/openvpn/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/status.c -------------------------------------------------------------------------------- /src/openvpn/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/status.h -------------------------------------------------------------------------------- /src/openvpn/syshead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/syshead.h -------------------------------------------------------------------------------- /src/openvpn/tun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/tun.c -------------------------------------------------------------------------------- /src/openvpn/tun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/tun.h -------------------------------------------------------------------------------- /src/openvpn/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/win32.c -------------------------------------------------------------------------------- /src/openvpn/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpn/win32.h -------------------------------------------------------------------------------- /src/openvpnserv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpnserv/Makefile.am -------------------------------------------------------------------------------- /src/openvpnserv/openvpnserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpnserv/openvpnserv.c -------------------------------------------------------------------------------- /src/openvpnserv/openvpnserv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpnserv/openvpnserv.vcxproj -------------------------------------------------------------------------------- /src/openvpnserv/openvpnserv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpnserv/openvpnserv.vcxproj.filters -------------------------------------------------------------------------------- /src/openvpnserv/openvpnserv_resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpnserv/openvpnserv_resources.rc -------------------------------------------------------------------------------- /src/openvpnserv/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpnserv/service.c -------------------------------------------------------------------------------- /src/openvpnserv/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/openvpnserv/service.h -------------------------------------------------------------------------------- /src/plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/Makefile.am -------------------------------------------------------------------------------- /src/plugins/auth-pam/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/auth-pam/Makefile.am -------------------------------------------------------------------------------- /src/plugins/auth-pam/README.auth-pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/auth-pam/README.auth-pam -------------------------------------------------------------------------------- /src/plugins/auth-pam/auth-pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/auth-pam/auth-pam.c -------------------------------------------------------------------------------- /src/plugins/auth-pam/auth-pam.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/auth-pam/auth-pam.exports -------------------------------------------------------------------------------- /src/plugins/auth-pam/pamdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/auth-pam/pamdl.c -------------------------------------------------------------------------------- /src/plugins/auth-pam/pamdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/auth-pam/pamdl.h -------------------------------------------------------------------------------- /src/plugins/down-root/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/down-root/Makefile.am -------------------------------------------------------------------------------- /src/plugins/down-root/README.down-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/down-root/README.down-root -------------------------------------------------------------------------------- /src/plugins/down-root/down-root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/down-root/down-root.c -------------------------------------------------------------------------------- /src/plugins/down-root/down-root.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/src/plugins/down-root/down-root.exports -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/t_client.rc-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/tests/t_client.rc-sample -------------------------------------------------------------------------------- /tests/t_client.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/tests/t_client.sh.in -------------------------------------------------------------------------------- /tests/t_cltsrv-down.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | echo "${role}:${signal}" >&3 3 | -------------------------------------------------------------------------------- /tests/t_cltsrv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/tests/t_cltsrv.sh -------------------------------------------------------------------------------- /tests/t_lpback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/tests/t_lpback.sh -------------------------------------------------------------------------------- /version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/version.m4 -------------------------------------------------------------------------------- /version.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_openvpn/HEAD/version.sh.in --------------------------------------------------------------------------------