summaryrefslogtreecommitdiff
path: root/plugins/openvpn.c
AgeCommit message (Collapse)AuthorFilesLines
2012-04-27openvpn: Fix --comp-lzo parameter handlingAdrien Bustany1-14/+16
The previous code would assume all commandline options to have a value, whereas --comp-lzo does not. As a result, openvpn's argv would have a spurious empty string in its argv, and openvpn would not launch.
2011-11-18plugins: Don't attempt to save strings with value NULLPatrik Flykt1-0/+3
If a string with value NULL is set with g_key_file_set_string(), a critical glib error will be printed.
2011-11-07openvpn: Save support for openvpnPatrik Flykt1-0/+18
Openvpn saves all settings with prefix 'OpenVPN.'
2011-05-27openvpn: Remove unused variable for VPN domainMarcel Holtmann1-3/+0
2011-05-22openvpn: Add remote-cert-tlsDaniel Wagner1-0/+1
2011-02-25provider: Remove IPv4 element registrationDaniel Wagner1-8/+34
2011-01-27openvpn: Use parser table instead of open codingDaniel Wagner1-61/+45
Use the same approach as in VPNC for passing arguments from the provider to OpenVPN client.
2011-01-27openvpn: Fix typo in routing prefix checkDaniel Wagner1-1/+1
2011-01-27provider: Factorize VPN routing environment variables parsingSamuel Ortiz1-110/+2
2011-01-26provider: Implement IPv6 route settingSamuel Ortiz1-2/+5
2011-01-22openvpn: Remove double reason parsingDaniel Wagner1-5/+0
Fix a copy/paste error. Reported by Mohamed Abbas <mohamed.abbas@intel.com>
2010-12-21openvpn: Identation fixesSamuel Ortiz1-38/+38
2010-12-21openvpn: Move foreign_option_ parse code into its own functionDaniel Wagner1-25/+31
Do not clutter the ov_notify loop with parsing code.
2010-12-21openvpn: Use ifconfig_remote as peer addressDaniel Wagner1-1/+1
route_vpn_gateway is not in all configuration setup the peer address.
2010-12-21openvpn: Append routesDaniel Wagner1-0/+109
2010-12-21openvpn: Pass in additional argumentsDaniel Wagner1-2/+37
Pass into the OpenVPN plugin: - protocol - port - auth_user_pass - tls-remote - cipher - auth - comp-lzo
2010-11-03openvpn: Add OpenVPN supportDaniel Wagner1-0/+239