traceroute function

Future<List<String>> traceroute(
  1. String host, {
  2. int maxHops = 30,
})

Implementation

Future<List<String>> traceroute(String host, {int maxHops = 30}) async =>
    await net_helpers.traceroute(host, maxHops: maxHops);