mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 22:47:37 +03:00
parent
9b1ee1b52f
commit
c0eacfa0f3
25 changed files with 1343 additions and 1384 deletions
|
@ -21,9 +21,15 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|||
package dns
|
||||
|
||||
import (
|
||||
"flag"
|
||||
maddycli "github.com/foxcpp/maddy/internal/cli"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
func init() {
|
||||
flag.StringVar(&overrideServ, "debug.dnsoverride", "system-default", "replace the DNS resolver address")
|
||||
maddycli.AddGlobalFlag(&cli.StringFlag{
|
||||
Name: "debug.dnsoverride",
|
||||
Usage: "replace the DNS resolver address",
|
||||
Value: "system-default",
|
||||
Destination: &overrideServ,
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue