]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Fix invalid parameter name in the channel
authorRemi Gacogne <remi.gacogne@powerdns.com>
Sat, 17 Dec 2022 09:22:09 +0000 (10:22 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 13 Jun 2023 07:59:43 +0000 (09:59 +0200)
pdns/channel.hh

index 6d26dc1b6a9ec011fdeff898247ccd37c3aa83c9..e221e6b2672bf333f96da1c48560d4ae20730fa7 100644 (file)
@@ -138,7 +138,7 @@ namespace channel
    * \throw runtime_error if the channel creation failed.
    */
   template <typename T, typename D = std::default_delete<T>>
-  std::pair<Sender<T, D>, Receiver<T, D>> createObjectQueue(bool sendNonBlocking = true, bool writeNonBlocking = true, size_t pipeBufferSize = 0, bool throwOnEOF = true);
+  std::pair<Sender<T, D>, Receiver<T, D>> createObjectQueue(bool sendNonBlocking = true, bool receiveNonBlocking = true, size_t pipeBufferSize = 0, bool throwOnEOF = true);
 
   /**
    * The notifier's end of a channel used to communicate between threads.