use of com.cisco.trex.stateless.IPv6NeighborDiscoveryService in project trex-stateless-gui by cisco-system-traffic-generator.
the class PortLayerConfiguration method getIPv6NDService.
private IPv6NeighborDiscoveryService getIPv6NDService() {
if (iPv6NDService == null) {
TRexClient trexClient = ConnectionManager.getInstance().getTrexClient();
iPv6NDService = new IPv6NeighborDiscoveryService(trexClient);
}
return iPv6NDService;
}
Aggregations