8cac2711d6fc45c63557723142d3ce08849bb6bd
moxdns
A very small wrapper around platform-"native" methods to perform DNS SRV lookups.
Usage
import "package:moxdns/moxdns.dart";
Future<void> main() async {
final result = await MoxdnsPlugin.srvQuery("_xmpps-client._tcp.example.server", false);
}
The first argument to srvQuery is the SRV record you want to query. The second one is
whether to use DNSSEC or not. Note that DNSSEC is currently not supported, so the option
essentially does nothing right now.
The function will return a future that either resolves to a list of SRV records, an empty
list of no records were found or null if an error occured.
Contributing
The development of this package is based on melos.
To make all packages link to each other locally, begin by running melos bootstrap. After editing
the code and making your changes, please run melos run analyze to make sure that no linter warnings
are left inside the code.
License
See LICENSE.
Description
Languages
Dart
33.8%
CMake
28.4%
C++
22.2%
Java
7%
Nix
4.8%
Other
3.8%