]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Add missing overrides 7679/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 5 Apr 2019 16:10:23 +0000 (18:10 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 5 Apr 2019 16:10:23 +0000 (18:10 +0200)
pdns/dnsdistdist/tcpiohandler.cc

index 4b4fc5919413263b471427c2237e947e6b8722c3..3ee1f46c35b83d42fbb53d4633b686aad85861c6 100644 (file)
@@ -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;