Last updated:
0 purchases
flutter traceroute
Flutter Traceroute #
A minimalist Flutter plugin for performing TRACEROUTE
Currently supported on Android and IOS
Limitations #
TTL is not supported on Android
IOS takes a little more time between steps, not sure what the root cause is
Installation #
IOS #
At the beginning of your Podfile, set the ios platform version to 14
platform :ios, '14.0'
copied to clipboard
At the end of your Podfile, add the following pods
pod 'SimplePing', :git => 'https://github.com/youssef-fk/SimplePing.git'
pod 'SimpleTracer', :git => 'https://github.com/youssef-fk/SimpleTracer.git'
copied to clipboard
Android #
All set
Usage #
const args = TracerouteArgs(
host: '8.8.8.8',
ttl: 20, // IOS ONLY
);
final stream = FlutterTraceroute().trace(args);
stream.listen((event) {
if (event is TracerouteStepStart) {} // ...
if (event is TracerouteStepRouter) {} // ...
if (event is TracerouteStepRouterDoesNotRespond) {} // ...
if (event is TracerouteStepFinished) {} // ...
if (event is TracerouteStepFailed) {} // ...
});
copied to clipboard
Objects definitions #
Class
Attributes
Description
TracerouteStep
-
Base class
TracerouteStepStart
String host, String ip, int ttl
Base class
TracerouteStepRouter
int step, String ip, int duration
Router jump
TracerouteStepRouterDoesNotRespond
int step
Jump timeout
TracerouteStepFinished
int step, String ip, int latency
End of trace
TracerouteStepFailed
String error
Trace error
Screenshot #
Contributing #
Pull requests are welcome!
License #
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.