From: Peter van Dijk Date: Mon, 9 Nov 2020 14:54:44 +0000 (+0100) Subject: Merge pull request #9239 from pieterlexis/xfr-list X-Git-Tag: dnsdist-1.6.0-alpha0~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=99a982d0ce9a8f70d04921cf234fa29c8eea394f;p=thirdparty%2Fpdns.git Merge pull request #9239 from pieterlexis/xfr-list Auth: Add pdns_control command to the the list of XFR domains in queue --- 99a982d0ce9a8f70d04921cf234fa29c8eea394f diff --cc pdns/receiver.cc index 6caf96898d,eff859df03..084dfe9a5f --- a/pdns/receiver.cc +++ b/pdns/receiver.cc @@@ -586,10 -586,11 +586,11 @@@ int main(int argc, char **argv DynListener::registerFunc("RESPSIZES", &DLRSizesHandler, "get histogram of response sizes"); DynListener::registerFunc("REMOTES", &DLRemotesHandler, "get top remotes"); DynListener::registerFunc("SET",&DLSettingsHandler, "set config variables", " "); - DynListener::registerFunc("RETRIEVE",&DLNotifyRetrieveHandler, "retrieve slave domain", ""); - DynListener::registerFunc("CURRENT-CONFIG",&DLCurrentConfigHandler, "retrieve the current configuration", "[diff|default]"); + DynListener::registerFunc("RETRIEVE",&DLNotifyRetrieveHandler, "retrieve slave domain", " []"); + DynListener::registerFunc("CURRENT-CONFIG",&DLCurrentConfigHandler, "retrieve the current configuration", "[diff]"); DynListener::registerFunc("LIST-ZONES",&DLListZones, "show list of zones", "[master|slave|native]"); DynListener::registerFunc("TOKEN-LOGIN", &DLTokenLogin, "Login to a PKCS#11 token", " "); + DynListener::registerFunc("XFR-QUEUE", &DLSuckRequests, "Get all requests for XFR in queue"); if(!::arg()["tcp-control-address"].empty()) { DynListener* dlTCP=new DynListener(ComboAddress(::arg()["tcp-control-address"], ::arg().asNum("tcp-control-port")));