Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 3.0.1
ARP protocol improvements

## 3.0.0
Performance improvements

Expand Down
7 changes: 5 additions & 2 deletions lib/src/configure_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import 'package:universal_io/io.dart';
Future configureNetworkToolsFlutter(
String dbDirectory, {
bool enableDebugging = false,
bool rebuildData = false,
}) async {
packages_page.enableDebugging = enableDebugging;
packages_page.dbDirectory = dbDirectory;
Expand All @@ -46,8 +47,10 @@ Future configureNetworkToolsFlutter(
PortScannerServiceFlutterImpl();
MdnsScannerServiceFlutterImpl();

final arpService = await ARPService.instance.open();
await arpService.buildTable();
if (rebuildData) {
await ARPService.instance.clear();
}
await ARPService.instance.build();
await packages_page.VendorTable.createVendorTableMap();

// Register dart ping for main isolate
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: network_tools_flutter
description: Extended features of network_tools package for flutter framework supporting iOS and Android
version: 3.0.0
version: 3.0.1
issue_tracker: https://github.com/osociety/network_tools_flutter/issues
repository: https://github.com/osociety/network_tools_flutter

Expand Down
Loading