dns_client

Creator: coderz1093

Last updated:

0 purchases

dns_client Image
dns_client Images

Languages

Categories

Add to Cart

Description:

dns client

Dart implementation of DNS-over-HTTPS.



Usage #
A simple usage example:
import 'package:dns_client/dns_client.dart';

main() async {
final dns = DnsOverHttps.google();
var response = await dns.lookup('google.com');
response.forEach((address) {
print(address.toString());
});}
copied to clipboard
import 'package:dns_client/dns_client.dart';

main() async {
final dns = DnsOverHttps.cloudflare();
var response = await dns.lookup('google.com');
response.forEach((address) {
print(address.toString());
});}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.