Skip to content

dietfriends/dns_client

Repository files navigation

Dart implementation of DNS-over-HTTPS.

CodeFactor pub.dev license

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());
  });}
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());
  });}

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages