ping_win32 0.0.2 copy "ping_win32: ^0.0.2" to clipboard
ping_win32: ^0.0.2 copied to clipboard

A simple wrapper for Win32 IcmpSendEcho2 function

example/ping_win32_example.dart

import 'dart:io';

import 'package:ping_win32/ping_win32.dart';

void main() async {
  final ping = await PingWin32.ping(
    InternetAddress.tryParse('192.168.10.12')!,
    timeout: Duration(seconds: 10),
  );
  print(ping);
}
1
likes
130
points
25
downloads

Publisher

verified publisherespresso3389.jp

Weekly Downloads

A simple wrapper for Win32 IcmpSendEcho2 function

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

ffi

More

Packages that depend on ping_win32