1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-01 02:59:01 +00:00

Renamed tty.cc/.h to nmap_tty.cc/.h

This commit is contained in:
fyodor
2006-03-06 00:15:49 +00:00
parent 76ab1500b3
commit 86089c4255
9 changed files with 14 additions and 14 deletions

View File

@@ -46,11 +46,11 @@ TARGET = nmap
TARGETNMAPFE=@TARGETNMAPFE@
INSTALLNMAPFE=@INSTALLNMAPFE@
export SRCS = main.cc nmap.cc targets.cc tcpip.cc nmap_error.cc utils.cc idle_scan.cc osscan.cc output.cc scan_engine.cc timing.cc charpool.cc services.cc protocols.cc nmap_rpc.cc portlist.cc NmapOps.cc TargetGroup.cc Target.cc FingerPrintResults.cc service_scan.cc NmapOutputTable.cc MACLookup.cc tty.cc nmap_dns.cc @COMPAT_SRCS@
export SRCS = main.cc nmap.cc targets.cc tcpip.cc nmap_error.cc utils.cc idle_scan.cc osscan.cc output.cc scan_engine.cc timing.cc charpool.cc services.cc protocols.cc nmap_rpc.cc portlist.cc NmapOps.cc TargetGroup.cc Target.cc FingerPrintResults.cc service_scan.cc NmapOutputTable.cc MACLookup.cc nmap_tty.cc nmap_dns.cc @COMPAT_SRCS@
OBJS = main.o nmap.o targets.o tcpip.o nmap_error.o utils.o idle_scan.o osscan.o output.o scan_engine.o timing.o charpool.o services.o protocols.o nmap_rpc.o portlist.o NmapOps.o TargetGroup.o Target.o FingerPrintResults.o service_scan.o NmapOutputTable.o MACLookup.o tty.o nmap_dns.o @COMPAT_OBJS@
OBJS = main.o nmap.o targets.o tcpip.o nmap_error.o utils.o idle_scan.o osscan.o output.o scan_engine.o timing.o charpool.o services.o protocols.o nmap_rpc.o portlist.o NmapOps.o TargetGroup.o Target.o FingerPrintResults.o service_scan.o NmapOutputTable.o MACLookup.o nmap_tty.o nmap_dns.o @COMPAT_OBJS@
export DEPS = nmap.h nmap_amigaos.h nmap_error.h targets.h idle_scan.h osscan.h output.h scan_engine.h timing.h tcpip.h utils.h global_structures.h charpool.h services.h protocols.h nmap_rpc.h portlist.h NmapOps.h TargetGroup.h Target.h FingerPrintResults.h service_scan.h NmapOutputTable.h MACLookup.h tty.h nmap_dns.h
export DEPS = nmap.h nmap_amigaos.h nmap_error.h targets.h idle_scan.h osscan.h output.h scan_engine.h timing.h tcpip.h utils.h global_structures.h charpool.h services.h protocols.h nmap_rpc.h portlist.h NmapOps.h TargetGroup.h Target.h FingerPrintResults.h service_scan.h NmapOutputTable.h MACLookup.h nmap_tty.h nmap_dns.h
# %.o : %.cc -- nope this is a GNU extension

View File

@@ -107,7 +107,7 @@
#include "timing.h"
#include "NmapOps.h"
#include "MACLookup.h"
#include "tty.h"
#include "nmap_tty.h"
#ifdef WIN32
#include "winfix.h"
#endif

View File

@@ -161,7 +161,7 @@
#include "nmap_dns.h"
#include "nsock.h"
#include "utils.h"
#include "tty.h"
#include "nmap_tty.h"
extern NmapOps o;

View File

@@ -1,6 +1,6 @@
/***************************************************************************
* tty.cc -- Handles runtime interaction with Nmap, so you can increase *
* verbosity/debugging or obtain a status line upon request. *
* nmap_tty.cc -- Handles runtime interaction with Nmap, so you can *
* increase verbosity/debugging or obtain a status line upon request. *
* *
***********************IMPORTANT NMAP LICENSE TERMS************************
* *
@@ -116,7 +116,7 @@
#include <stdlib.h>
#include "output.h"
#include "tty.h"
#include "nmap_tty.h"
#include "NmapOps.h"
extern NmapOps o;

View File

@@ -1,6 +1,6 @@
/***************************************************************************
* tty.h -- Handles runtime interaction with Nmap, so you can increase *
* verbosity/debugging or obtain a status line upon request. *
* nmap_tty.h -- Handles runtime interaction with Nmap, so you can *
* increase verbosity/debugging or obtain a status line upon request. *
* *
***********************IMPORTANT NMAP LICENSE TERMS************************
* *

View File

@@ -104,7 +104,7 @@
#include "osscan.h"
#include "timing.h"
#include "NmapOps.h"
#include "tty.h"
#include "nmap_tty.h"
#if TIME_WITH_SYS_TIME
# include <sys/time.h>

View File

@@ -105,7 +105,7 @@
#include "scan_engine.h"
#include "timing.h"
#include "NmapOps.h"
#include "tty.h"
#include "nmap_tty.h"
#include <dnet.h>
#include <list>

View File

@@ -106,7 +106,7 @@
#include "NmapOps.h"
#include "nsock.h"
#include "tty.h"
#include "nmap_tty.h"
#if HAVE_OPENSSL
#include <openssl/ssl.h>

View File

@@ -109,7 +109,7 @@
#include "Target.h"
#include "scan_engine.h"
#include "nmap_dns.h"
#include "tty.h"
#include "nmap_tty.h"
using namespace std;
extern NmapOps o;