summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--talpid-openvpn-plugin/src/lib.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/talpid-openvpn-plugin/src/lib.rs b/talpid-openvpn-plugin/src/lib.rs
index b257b12cab..33a9198ecd 100644
--- a/talpid-openvpn-plugin/src/lib.rs
+++ b/talpid-openvpn-plugin/src/lib.rs
@@ -55,8 +55,11 @@ error_chain!{
/// All the OpenVPN events this plugin will register for listening to. Edit this variable to change
/// events.
-pub static INTERESTING_EVENTS: &'static [OpenVpnPluginEvent] =
- &[OpenVpnPluginEvent::Up, OpenVpnPluginEvent::RoutePredown];
+pub static INTERESTING_EVENTS: &'static [OpenVpnPluginEvent] = &[
+ OpenVpnPluginEvent::AuthFailed,
+ OpenVpnPluginEvent::Up,
+ OpenVpnPluginEvent::RoutePredown,
+];
openvpn_plugin!(
::openvpn_open,