Call clock_tick method

This commit is contained in:
Sergey Abramchuk
2017-05-01 13:07:07 +03:00
parent 1464cd1ce9
commit 036e9f9ab4
5 changed files with 56 additions and 39 deletions
+4 -1
View File
@@ -33,7 +33,6 @@ bool OpenVPNClient::pause_on_connection_timeout() {
return false;
}
// TODO: Provide interfacing with an OS-layer Keychain
void OpenVPNClient::external_pki_cert_request(ClientAPI::ExternalPKICertRequest& certreq) { }
void OpenVPNClient::external_pki_sign_request(ClientAPI::ExternalPKISignRequest& signreq) { }
@@ -44,3 +43,7 @@ void OpenVPNClient::event(const ClientAPI::Event& ev) {
void OpenVPNClient::log(const ClientAPI::LogInfo& log) {
[(__bridge OpenVPNAdapter* )adapter handleLog:&log];
}
void OpenVPNClient::clock_tick() {
[(__bridge OpenVPNAdapter* )adapter tick];
}