This commit is contained in:
insanity
2018-09-12 20:29:24 +09:00
parent bab2dbfb94
commit 31d0245490
4 changed files with 26 additions and 29 deletions

View File

@@ -1,5 +1,5 @@
import { Zone } from './Zone';
import { Port } from './Port';
// import { Port } from './Port';
import { MetaIPType } from '../meta';
export const defaultOsType = 'UNKNOWN';
@@ -24,5 +24,5 @@ export interface Host {
discoveredDate?: Date;
zone?: Zone;
portList?: Port[];
// portList?: Port[];
}

View File

@@ -1,5 +1,4 @@
import { Host } from './Host';
import { Service } from './Service';
import { MetaPortType } from '../meta';
export interface Port {
@@ -11,5 +10,5 @@ export interface Port {
discoveredDate?: Date;
host?: Host;
serviceList?: Service[];
// serviceList?: Service[];
}

View File

@@ -1,4 +1,3 @@
import { Host } from './Host';
import { MetaIPType } from '../meta';
export interface Zone {
@@ -12,5 +11,5 @@ export interface Zone {
discoveredBy?: string[];
discoveredDate?: Date;
hostList?: Host[];
// hostList?: Host[];
}