mirror of
https://github.com/nmap/nmap.git
synced 2025-12-17 05:09:00 +00:00
Maybe 3.99 now
This commit is contained in:
@@ -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
|
||||
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
|
||||
the --min_rtt_timeout option (it only recognized the newly
|
||||
hyphenated --min-rtt-timeout). Thanks to Joshua D. Abraham
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
|
||||
.\" 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.
|
||||
.TH "NMAP" "1" "01/23/2006" "" "Nmap Reference Guide"
|
||||
.TH "NMAP" "1" "01/24/2006" "" "Nmap Reference Guide"
|
||||
.\" disable hyphenation
|
||||
.nh
|
||||
.\" disable justification (adjust text to left margin only)
|
||||
|
||||
@@ -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}
|
||||
TARGET SPECIFICATION:
|
||||
Can pass hostnames, IP addresses, networks, etc.
|
||||
|
||||
5
tty.cc
5
tty.cc
@@ -121,7 +121,10 @@
|
||||
// We currently just have stub functions for Win32 that don't actually
|
||||
// do anything. Any volunteers to add real support?
|
||||
void tty_init() { return; }
|
||||
bool keyWasPressed() { return _kbhit(); }
|
||||
bool keyWasPressed() {
|
||||
return false;
|
||||
//return _kbhit();
|
||||
}
|
||||
void tty_done() { return; }
|
||||
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user