lud icon indicating copy to clipboard operation
lud copied to clipboard

Command line DNS query tool, written in rust

Results 10 lud issues
Sort by recently updated
recently updated
newest added

Currently we print hex and spaces between every 4 bytes. You can `| tr -d ' ' | xxd -rp | xxd` to get to a regular hex dump format....

We should just downcase the user's input before trying to parse it.

If the TR bit is set, lud should follow up to get the rest.

This will allow users to look up any name they may imagine.

Just added second implementation of rescon module with conditional compilation by target OS.

Facilitate usage in a pipeline by providing machine--readable output. JSON with toggleable pretty-print is probably a first-choice here because of wonderful things like jq.

We gotta do something to stand out from dig :)

[RFC 7766] says it's a requirement: > Section 6.1.3.2 of [RFC1123] is updated: All general-purpose DNS > implementations MUST support both UDP and TCP transport. [RFC 7766]: https://tools.ietf.org/html/rfc7766

See RFC2673 for a potential representation that a CLI arg could deal with. [RFC2673]: https://tools.ietf.org/html/rfc2673

I've got a rudimentary custom error type which (on current rust) generates deprecation warnings at compile time: ``` warning: trait objects without an explicit `dyn` are deprecated --> src/errors.rs:17:32 |...