├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples └── external_script └── openvpn-plugin-auth-script.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fac/auth-script-openvpn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fac/auth-script-openvpn/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fac/auth-script-openvpn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fac/auth-script-openvpn/HEAD/README.md -------------------------------------------------------------------------------- /examples/external_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fac/auth-script-openvpn/HEAD/examples/external_script -------------------------------------------------------------------------------- /openvpn-plugin-auth-script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fac/auth-script-openvpn/HEAD/openvpn-plugin-auth-script.c --------------------------------------------------------------------------------