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

NSE committed

This commit is contained in:
fyodor
2006-12-11 00:34:26 +00:00
parent cc451cdb54
commit b361685be8
136 changed files with 23553 additions and 201 deletions

View File

@@ -140,7 +140,17 @@ void Target::Initialize() {
htn.msecs_used = 0;
htn.toclock_running = false;
interface_type = devt_other;
devname[0] = devfullname[0] = '\0';
devname[0] = '\0';
devfullname[0] = '\0';
}
const char * Target::deviceName() {
return (devname[0] != '\0')? devname : NULL;
}
const char * Target::deviceFullName() {
return (devfullname[0] != '\0')? devfullname : NULL;
}
void Target::Recycle() {