We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a boolean option to resolvename so it also shows the different subdomains of a name.
resolvename
Example:
resolvename navcoin.nav Output:
resolvename navcoin.nav
{ "_expiry": "6978256", "_key": "acce5028f8e7c95a4e3f676e76b3fddb21db12b42de9182aa0cd047d282e35ff7f64b4cf12d02897d79f558e94c6cb14", "ip": "127.0.0.1" }
resolvename Navcoin.nav true Output:
resolvename Navcoin.nav true
{ "_expiry": "6978256", "_key": "acce5028f8e7c95a4e3f676e76b3fddb21db12b42de9182aa0cd047d282e35ff7f64b4cf12d02897d79f558e94c6cb14", ".": { "ip": "127.0.0.1" }, "www": { "ip": "8.8.8.8" } }
The text was updated successfully, but these errors were encountered:
@aguycalled I'm working on this now
Sorry, something went wrong.
@aguycalled I think maybe something like this would be easier to use?
{ "_expiry": "6978256", "_key": "acce5028f8e7c95a4e3f676e76b3fddb21db12b42de9182aa0cd047d282e35ff7f64b4cf12d02897d79f558e94c6cb14", "_subdomains": { ".": "127.0.0.1", "www": "8.8.8.8" } }
Successfully merging a pull request may close this issue.
Add a boolean option to
resolvename
so it also shows the different subdomains of a name.Example:
resolvename navcoin.nav
Output:resolvename Navcoin.nav true
Output:The text was updated successfully, but these errors were encountered: