From: Remi Gacogne Date: Fri, 5 Apr 2019 16:10:23 +0000 (+0200) Subject: dnsdist: Add missing overrides X-Git-Tag: dnsdist-1.4.0-alpha1~21^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3163698b9a59124e4b7b7f6843ab7ce834d03545;p=pdns dnsdist: Add missing overrides --- diff --git a/pdns/dnsdistdist/tcpiohandler.cc b/pdns/dnsdistdist/tcpiohandler.cc index 4b4fc5919..3ee1f46c3 100644 --- a/pdns/dnsdistdist/tcpiohandler.cc +++ b/pdns/dnsdistdist/tcpiohandler.cc @@ -283,7 +283,7 @@ public: } } - IOState tryHandshake() + IOState tryHandshake() override { int res = SSL_accept(d_conn.get()); if (res == 1) { @@ -296,7 +296,7 @@ public: throw std::runtime_error("Error accepting TLS connection"); } - void doHandshake() + void doHandshake() override { int res = 0; do { @@ -754,7 +754,7 @@ public: gnutls_record_set_timeout(d_conn.get(), timeout * 1000); } - void doHandshake() + void doHandshake() override { int ret = 0; do { @@ -766,7 +766,7 @@ public: while (ret < 0 && ret == GNUTLS_E_INTERRUPTED); } - IOState tryHandshake() + IOState tryHandshake() override { int ret = 0;