From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 19 Nov 2025 19:13:01 +0000 (-0500) Subject: spelling: from which the query is coming X-Git-Tag: rec-5.4.0-alpha1~61^2~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62c664b48a494185da626de01553f2d3c1da6b78;p=thirdparty%2Fpdns.git spelling: from which the query is coming Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/pdns/recursordist/pdns_recursor.cc b/pdns/recursordist/pdns_recursor.cc index 0761ef4d5a..279bbb1693 100644 --- a/pdns/recursordist/pdns_recursor.cc +++ b/pdns/recursordist/pdns_recursor.cc @@ -2188,7 +2188,7 @@ bool matchOTConditions(RecEventTrace& eventTrace, const std::unique_ptrsetSocket(fileDesc); comboWriter->d_tag = ctag; comboWriter->d_qhash = qhash; - comboWriter->setRemote(fromaddr); // the address the query is coming from + comboWriter->setRemote(fromaddr); // the address from which the query is coming comboWriter->setSource(source); // the address we assume the query is coming from, might be set by proxy protocol comboWriter->setLocal(destaddr); // the address the query was received on comboWriter->setDestination(destination); // the address we assume the query is sent to, might be set by proxy protocol @@ -2483,7 +2483,7 @@ static void handleNewUDPQuestion(int fileDesc, FDMultiplexer::funcparam_t& /* va const bool proxyActive = t_proxyProtocolACL && !t_proxyProtocolACL->empty(); static const size_t maxIncomingQuerySize = !proxyActive ? 512 : (512 + g_proxyProtocolMaximumSize); static thread_local std::string data; - ComboAddress fromaddr; // the address the query is coming from + ComboAddress fromaddr; // the address from which the query is coming ComboAddress source; // the address we assume the query is coming from, might be set by proxy protocol ComboAddress destination; // the address we assume the query was sent to, might be set by proxy protocol struct msghdr msgh{}; diff --git a/pdns/recursordist/rec-main.hh b/pdns/recursordist/rec-main.hh index d5361b8234..550d3b5de9 100644 --- a/pdns/recursordist/rec-main.hh +++ b/pdns/recursordist/rec-main.hh @@ -109,7 +109,7 @@ struct DNSComboWriter MOADNSParser d_mdp; struct timeval d_now; - ComboAddress d_remote; // the address the query is coming from + ComboAddress d_remote; // the address from which the query is coming ComboAddress d_source; // the address we assume the query is coming from, might be set by proxy protocol ComboAddress d_local; // the address we received the query on ComboAddress d_destination; // the address we assume the query is sent to, might be set by proxy protocol