ing
This commit is contained in:
parent
160d40b455
commit
19dda63c8a
|
@ -12,5 +12,6 @@ export interface Host {
|
|||
zone?: Zone;
|
||||
portList?: Port[];
|
||||
|
||||
discoveredBy?: string;
|
||||
discoveredDate?: Date;
|
||||
}
|
||||
|
|
|
@ -7,8 +7,9 @@ export interface Port {
|
|||
portNumber?: number;
|
||||
meta?: Map<string, string>;
|
||||
|
||||
discoveredDate?: Date;
|
||||
|
||||
host?: Host;
|
||||
serviceList?: Service[];
|
||||
|
||||
discoveredBy?: string;
|
||||
discoveredDate?: Date;
|
||||
}
|
||||
|
|
|
@ -9,5 +9,6 @@ export interface Service {
|
|||
|
||||
port?: Port;
|
||||
|
||||
discoveredBy?: string;
|
||||
discoveredDate?: Date;
|
||||
}
|
||||
|
|
|
@ -9,5 +9,6 @@ export interface Zone {
|
|||
mac?: string;
|
||||
meta?: Map<string, string>;
|
||||
|
||||
discoveredBy?: string;
|
||||
discoveredDate?: Date;
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
"@ngrx/schematics": "^6.1.0",
|
||||
"@ngrx/store": "^6.1.0",
|
||||
"@ngrx/store-devtools": "^6.1.0",
|
||||
"@overflow/rpc-js": "0.0.2",
|
||||
"@overflow/rpc-js": "0.0.4",
|
||||
"@types/fs-extra": "^5.0.4",
|
||||
"@types/jasmine": "~2.8.6",
|
||||
"@types/jasminewd2": "~2.0.3",
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
</svg>
|
||||
</div>
|
||||
<div class="home-description">
|
||||
<h1>overFlow Network Scanner </h1>
|
||||
<h1>overFlow Scanner </h1>
|
||||
<br>
|
||||
<b>를 이용해 주셔서 감사합니다.</b>
|
||||
<br> 좌측의 버튼을 클릭 하시면 기본 설정으로 스캐닝이 시작 됩니다. 설정의 변경을 원하시면 상단의 설정 영역을 클릭하여 변경이 가능합니다.
|
||||
|
|
|
@ -3,7 +3,7 @@ import { Component, OnInit } from '@angular/core';
|
|||
import { Observable, Subscription, of } from 'rxjs';
|
||||
import { catchError, exhaustMap, map, tap, take } from 'rxjs/operators';
|
||||
|
||||
import { ProbeService } from '../../../commons/service/probe.service';
|
||||
import { ProbeService, requesterID } from '../../../commons/service/probe.service';
|
||||
|
||||
import { Interface } from '@overflow/model/net/nic';
|
||||
import { Zone, DiscoverHost } from '@overflow/model/discovery';
|
||||
|
@ -63,7 +63,7 @@ export class HomePageComponent implements OnInit {
|
|||
}
|
||||
};
|
||||
|
||||
this.probeService.send('DiscoveryService.DiscoverHost', 'testRequesterID', zone, discoverHost);
|
||||
this.probeService.send('DiscoveryService.DiscoverHost', requesterID, zone, discoverHost);
|
||||
|
||||
// this.probeService.call<Interface>('MachineService.Interfaces').pipe(
|
||||
// map((ifaces: Interface[]) => {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
</button>
|
||||
</p-header>
|
||||
<div id="nic-list-border">
|
||||
<p-menu [model]="items"></p-menu>
|
||||
<p-menu [model]="addresses"></p-menu>
|
||||
</div>
|
||||
<!-- <div>Body Content</div>
|
||||
|
||||
|
|
|
@ -8,8 +8,10 @@ import {
|
|||
} from '@overflow/rpc-js';
|
||||
import { Subscription } from 'rxjs';
|
||||
|
||||
export const requesterID = 'scannerUser';
|
||||
|
||||
const config: WebSocketClientRWCConfig = {
|
||||
url: 'ws://localhost:60000/scanner'
|
||||
url: 'ws://localhost:60000/scanner?requesterID=' + requesterID
|
||||
};
|
||||
const rwc = new WebSocketClientRWC(config);
|
||||
const codec = new JSONClientCodec();
|
||||
|
@ -25,6 +27,14 @@ export class ProbeService extends Client {
|
|||
this.notiSubscription = this.notification()
|
||||
.subscribe((notiCodec: ClientNotificationCodec) => {
|
||||
console.log(notiCodec.method());
|
||||
const params = notiCodec.params();
|
||||
if (undefined !== params) {
|
||||
params.forEach(param => {
|
||||
|
||||
console.log(param);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -224,9 +224,9 @@
|
|||
tree-kill "^1.0.0"
|
||||
webpack-sources "^1.1.0"
|
||||
|
||||
"@overflow/rpc-js@0.0.2":
|
||||
version "0.0.2"
|
||||
resolved "https://nexus.loafle.net/repository/npm-all/@overflow/rpc-js/-/rpc-js-0.0.2.tgz#16a628f988cb2994d5b02d0c871340d9df6819e2"
|
||||
"@overflow/rpc-js@0.0.4":
|
||||
version "0.0.4"
|
||||
resolved "https://nexus.loafle.net/repository/npm-all/@overflow/rpc-js/-/rpc-js-0.0.4.tgz#0d0fe3919551ab60b784825f612290c6003148c7"
|
||||
|
||||
"@schematics/angular@0.7.3":
|
||||
version "0.7.3"
|
||||
|
|
Loading…
Reference in New Issue
Block a user