From 8028e1ba5f59667c3476460a0b7429e026201572 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 28 May 2019 11:36:40 +0200 Subject: [PATCH] dnsdist: Add missing overrides for ::getServerNameIndication() --- pdns/dnsdistdist/tcpiohandler.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/dnsdistdist/tcpiohandler.cc b/pdns/dnsdistdist/tcpiohandler.cc index bef5ce2faa..959648134f 100644 --- a/pdns/dnsdistdist/tcpiohandler.cc +++ b/pdns/dnsdistdist/tcpiohandler.cc @@ -360,7 +360,7 @@ public: } } - std::string getServerNameIndication() + std::string getServerNameIndication() override { if (d_conn) { const char* value = SSL_get_servername(d_conn.get(), TLSEXT_NAMETYPE_host_name); @@ -872,7 +872,7 @@ public: return got; } - std::string getServerNameIndication() + std::string getServerNameIndication() override { if (d_conn) { unsigned int type; -- 2.47.2