1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-16 04:39:03 +00:00

Maybe 3.99 now

This commit is contained in:
fyodor
2006-01-25 09:29:04 +00:00
parent 686ec79248
commit d56b6299fd
4 changed files with 6 additions and 6 deletions

View File

@@ -8,9 +8,6 @@ o Created a Windows executable installer using the open source NSIS
Thanks to Google SoC student Bo Jiang (jiangbo(a)brandeis.edu) for Thanks to Google SoC student Bo Jiang (jiangbo(a)brandeis.edu) for
creating the initial version. creating the initial version.
o Added runtime interaction support to Windows, thanks to a 2-line
(wow) patch from Gisle Vanem (giva(a)bgnett.no)
o Fixed a backward compatibility bug in which Nmap didn't recognize o Fixed a backward compatibility bug in which Nmap didn't recognize
the --min_rtt_timeout option (it only recognized the newly the --min_rtt_timeout option (it only recognized the newly
hyphenated --min-rtt-timeout). Thanks to Joshua D. Abraham hyphenated --min-rtt-timeout). Thanks to Joshua D. Abraham

View File

@@ -2,7 +2,7 @@
.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1). .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
.\" Instead of manually editing it, you probably should edit the DocBook XML .\" Instead of manually editing it, you probably should edit the DocBook XML
.\" source for it and then use the DocBook XSL Stylesheets to regenerate it. .\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
.TH "NMAP" "1" "01/23/2006" "" "Nmap Reference Guide" .TH "NMAP" "1" "01/24/2006" "" "Nmap Reference Guide"
.\" disable hyphenation .\" disable hyphenation
.nh .nh
.\" disable justification (adjust text to left margin only) .\" disable justification (adjust text to left margin only)

View File

@@ -1,4 +1,4 @@
Nmap 3.98BETA1 ( http://www.insecure.org/nmap/ ) Nmap 3.99 ( http://www.insecure.org/nmap/ )
Usage: nmap [Scan Type(s)] [Options] {target specification} Usage: nmap [Scan Type(s)] [Options] {target specification}
TARGET SPECIFICATION: TARGET SPECIFICATION:
Can pass hostnames, IP addresses, networks, etc. Can pass hostnames, IP addresses, networks, etc.

5
tty.cc
View File

@@ -121,7 +121,10 @@
// We currently just have stub functions for Win32 that don't actually // We currently just have stub functions for Win32 that don't actually
// do anything. Any volunteers to add real support? // do anything. Any volunteers to add real support?
void tty_init() { return; } void tty_init() { return; }
bool keyWasPressed() { return _kbhit(); } bool keyWasPressed() {
return false;
//return _kbhit();
}
void tty_done() { return; } void tty_done() { return; }
#else #else