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: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F7679%2Fhead;p=thirdparty%2Fpdns.git dnsdist: Add missing overrides --- diff --git a/pdns/dnsdistdist/tcpiohandler.cc b/pdns/dnsdistdist/tcpiohandler.cc index 4b4fc59194..3ee1f46c35 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;