Skip to content

Commit 2339b20

Browse files
committed
Prefer the term "auto-configure" to "minimal configuration"
1 parent 969e3b1 commit 2339b20

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ capabilities within that scope. Specifically it:
4242

4343
1. Synthesizes PTR responses in the reverse zone
4444
1. Synthesizes matching/correlated A/AAAA responses in the forward zone
45-
1. Requires minimal configuration and zero-maintenance by deducing zone configuration with DNS Probing
45+
1. Auto-configures by deducing zone configuration with DNS Probing
4646
2. Can load forward zones and derive corresponding PTR values from A, AAAA and CNAME RRs to intermingle with synthetic responses
4747
4. Responds to zone specific queries such as NS, SOA and ANY
4848
5. Is written in [go](https://golang.org) with resource efficiency in mind
@@ -67,7 +67,7 @@ all, you might be a sysadmin who wants all reverse queries directed to a zero-ma
6767
system, in which case `autoreverse` can probably take care of that for you.
6868

6969

70-
### What is meant by "minimal configuration"?
70+
### What is meant by "auto-configures"?
7171

7272
`autoreverse` avoids redundant configuration and attempts to deduce just about everything
7373
possible that's already present in the DNS. That means `autoreverse` can start up and

autoreverse.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.Os
44
.Sh NAME
55
.Nm autoreverse
6-
.Nd a minimalist-configuration reverse DNS name server
6+
.Nd an auto-configuring reverse DNS name server
77
.Sh SYNOPSIS
88
.Nm
99
.Fl h | -help | -manpage | v | -version

dns.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ func (t *server) serveReverse(wtr dns.ResponseWriter, req *request) serveResult
574574
return serveDone
575575
}
576576

577-
// writeMsg finalized the output message with all of the common processing, checks with
577+
// writeMsg finalizes the output message with all of the common processing, checks with
578578
// RRL to see if the response is rate-limited and then potentially calls the response
579579
// writer to send the message. Any error is recorded in req.logError
580580
func (t *server) writeMsg(wtr dns.ResponseWriter, req *request) {

usage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ present in the parent name servers.
264264
// sure that's a good idea, but we'll live with it for now.
265265
//
266266
// In essence, the rrl package does all the conversion to ints and floats then returns
267-
// errors as necessary so at this level all values are accepted a strings without any
267+
// errors as necessary so at this level all values are accepted as strings without any
268268
// validation.
269269
//
270270
// Since the rrl config starts life as a no-op config, at least one of the *psec values

0 commit comments

Comments
 (0)