1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 18:09:01 +00:00

mark the SIGPIPE as done

This commit is contained in:
d33tah
2013-07-10 15:15:20 +00:00
parent 8520c1359e
commit eba4e034f7

View File

@@ -19,13 +19,6 @@ o Nping in ICMP mode (default) must not be checking the icmp IDs or
from the other nping (as well as its own) and it screws up the timing
stats too.
o Make Ncat reset the signal handler for SIGPIPE to SIG_DFL before
execing a program with --exec and friends. A "broken pipe" error in
a subprocess should kill the subprocess. Lack of default SIGPIPE
handling is what prevents a trivial Lua chargen script--it loops
forever after the socket disconnects because none of its writes
fail. Cf. http://www.chiark.greenend.org.uk/ucgi/~cjwatson/blosxom/2009-07-02-python-sigpipe.html.
o Update CHANGELOG for new release
o New Nmap Release
@@ -740,6 +733,13 @@ o random tip database
DONE:
o Make Ncat reset the signal handler for SIGPIPE to SIG_DFL before
execing a program with --exec and friends. A "broken pipe" error in
a subprocess should kill the subprocess. Lack of default SIGPIPE
handling is what prevents a trivial Lua chargen script--it loops
forever after the socket disconnects because none of its writes
fail. Cf. http://www.chiark.greenend.org.uk/ucgi/~cjwatson/blosxom/2009-07-02-python-sigpipe.html.
o [Nping] In '-q' mode, Nping should keep the line giving the min/max/avg rtt
times. That way people can avoid seeing each individual packet but
still see the stats which are similar to what normal ping gives