dart_ping icon indicating copy to clipboard operation
dart_ping copied to clipboard

Multi-platform network ping utility for Dart

Results 15 dart_ping issues
Sort by recently updated
recently updated
newest added

I start example project [lan_scanner](https://github.com/ivirtex/lan_scanner) and call scanner.quickIcmpScanSync where inside the ping method is called which, due to overflow or something else, cannot complete. If I change the values ​​of...

macOS Linux ![314769346-aa8e9808-bb00-4589-a1e8-60ca662aaec9](https://github.com/point-source/dart_ping/assets/18566822/9b2908f5-3275-4175-ad72-81e417728e7f) A user [requested](https://github.com/osociety/vernet/issues/132) to show these values in my app vernet which I think if you can add would be better

You forgot to throw ttl in the constructor, you can add and make a release! Thank you very much in advance. _file dart_ping_ios.dart_ ``` static DartPingIOS _init( String host, int?...

I've tryed to do a ping and compile my app in release mode using this code: ``` final result = await Ping(ipServer, count: 1).stream.first; if (result.error != null || result.response...

PingResponse(seq:1, ip:110.242.68.66, ttl:53, time:36.3 ms) PingResponse(seq:2, ip:110.242.68.66, ttl:53, time:19.1 ms) PingResponse(seq:2, ip:110.242.68.66, ttl:53, time:19.2 ms) PingResponse(seq:2, ip:110.242.68.66, ttl:53, time:19.9 ms) PingResponse(seq:2, ip:110.242.68.66, ttl:53, time:20.7 ms) PingResponse(seq:2, ip:110.242.68.66, ttl:53, time:21.7 ms)...

If I call `Ping(google.com, count: 5)` and listen for events, each individual `PingResponse` notes

Hello, thank you for your excellent work. But I found a bug that if you ping an IP address on iOS16 when using mobile data, you will get "unknownHost" But...

can't reproduce

Android 12 emulator and Redmi K30 device. Version: 9.0.0 Unhandled Exception: Exception: Could not find ping binary on this system. Please ensure it is installed

need info

If I understand correctly dart_ping_ios is the same package as dart_ping but includes flutter parts so that it can interact with flutter system calls like the package for ios. But...

blocked

I have a use case, where I need to run ping inside another isolate and return results to the main isolate. However when trying to register on ios I get...

blocked