]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Remove forgotten warning about source interface selection 10130/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 2 Mar 2021 12:51:23 +0000 (13:51 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 2 Mar 2021 12:51:23 +0000 (13:51 +0100)
pdns/dnsdistdist/dnsdist-tcp-downstream.cc

index 204717950ac2e888316bc6dad0a6de337bde8ff8..770cfa6d0919d9104017ca4dcf807ddfba7290eb 100644 (file)
@@ -52,7 +52,6 @@ IOState TCPConnectionToBackend::sendQuery(std::shared_ptr<TCPConnectionToBackend
 {
   DEBUGLOG("sending query to backend "<<conn->getDS()->getName()<<" over FD "<<conn->d_handler->getDescriptor());
 
-#warning FIXME: TODO: this drops 1/ source selection other than SO_BINDTODEVICE, perhaps we should look into IP_SENDIF?
   IOState state = conn->d_handler->tryWrite(conn->d_currentQuery.d_buffer, conn->d_currentPos, conn->d_currentQuery.d_buffer.size());
 
   if (state != IOState::Done) {