diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-11-02 15:00:48 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-11-05 10:04:56 +0100 |
| commit | 7d09cc77d473c658dc99752f94db4461864ce869 (patch) | |
| tree | de4407a4652b7610f37a32b8aeecae6d941bdb02 /talpid-openvpn-plugin/src/processing.rs | |
| parent | 009dfe9c8a2c50f7fc46794cf17d8809cf285a99 (diff) | |
| download | mullvadvpn-7d09cc77d473c658dc99752f94db4461864ce869.tar.xz mullvadvpn-7d09cc77d473c658dc99752f94db4461864ce869.zip | |
Use latest changes to openvpn-plugin library
Diffstat (limited to 'talpid-openvpn-plugin/src/processing.rs')
| -rw-r--r-- | talpid-openvpn-plugin/src/processing.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/talpid-openvpn-plugin/src/processing.rs b/talpid-openvpn-plugin/src/processing.rs index 5ac6bed8d3..900340820c 100644 --- a/talpid-openvpn-plugin/src/processing.rs +++ b/talpid-openvpn-plugin/src/processing.rs @@ -62,7 +62,7 @@ impl EventProcessor { pub fn process_event( &mut self, - event: openvpn_plugin::types::OpenVpnPluginEvent, + event: openvpn_plugin::EventType, env: HashMap<String, String>, ) -> Result<()> { log::trace!("Processing \"{:?}\" event", event); @@ -86,5 +86,5 @@ impl EventProcessor { } jsonrpc_client!(pub struct EventProxy { - pub fn openvpn_event(&mut self, event: openvpn_plugin::types::OpenVpnPluginEvent, env: HashMap<String, String>) -> Future<()>; + pub fn openvpn_event(&mut self, event: openvpn_plugin::EventType, env: HashMap<String, String>) -> Future<()>; }); |
