2018-09-03 16:12:10 +00:00
|
|
|
import { Host } from './Host';
|
|
|
|
import { Service } from './Service';
|
|
|
|
import { MetaPortType } from '../meta';
|
|
|
|
|
|
|
|
export interface Port {
|
|
|
|
metaPortType?: MetaPortType;
|
|
|
|
portNumber?: number;
|
2018-09-11 08:04:22 +00:00
|
|
|
|
|
|
|
meta?: Map<string, Map<string, string>>;
|
|
|
|
discoveredBy?: string[];
|
|
|
|
discoveredDate?: Date;
|
2018-09-03 16:12:10 +00:00
|
|
|
|
|
|
|
host?: Host;
|
|
|
|
serviceList?: Service[];
|
|
|
|
}
|