From 020fcc0b62e80a7e9a7ebc69af4a0e5bfd44ed94 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 9 Oct 2009 18:45:10 +0000 Subject: [PATCH] Add to CHANGELOG: o [Ncat] Fixed the combination of --max-conns and --exec on Windows. The count of connected clients was not decreased when the program spawned by --exec finished. With --max-conns 5, for example, no more connections would be allowed after the fifth, even if some of the earlier ones had ended. Jon Greaves reported the problem and Venkat contributed a patch. o [Ncat] The code that manages the count of connected clients has been made robust with respect to signals. The code was contributed by Solar Designer. --- CHANGELOG | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index c9b0e5d44..8d80dd8bb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,16 @@ # Nmap Changelog ($Id$); -*-text-*- +o [Ncat] Fixed the combination of --max-conns and --exec on Windows. + The count of connected clients was not decreased when the program + spawned by --exec finished. With --max-conns 5, for example, no more + connections would be allowed after the fifth, even if some of the + earlier ones had ended. Jon Greaves reported the problem and Venkat + contributed a patch. + +o [Ncat] The code that manages the count of connected clients has been + made robust with respect to signals. The code was contributed by + Solar Designer. + o The files read by the -iL (input from file) and --excludefile options now support comments that start with # and go to the end of the line. This was implemented by Tom Sellers.