We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cff909a commit 0208ecfCopy full SHA for 0208ecf
dnscrypt-proxy/plugin_forward.go
@@ -130,6 +130,7 @@ func (plugin *PluginForward) Init(proxy *Proxy) error {
130
d6 := &dhcpdns.Detector{RemoteIPPort: "[2001:DB8::53]:80"}
131
if err := d6.Detect(); err != nil {
132
dlog.Criticalf("Failed to start the DHCP/DNS IPv6 server: %s", err)
133
+ continue
134
}
135
go d6.Serve(9, 10)
136
plugin.dhcpdns = append(plugin.dhcpdns, d6)
@@ -139,6 +140,7 @@ func (plugin *PluginForward) Init(proxy *Proxy) error {
139
140
d4 := &dhcpdns.Detector{RemoteIPPort: "192.0.2.53:80"}
141
if err := d4.Detect(); err != nil {
142
dlog.Criticalf("Failed to start the DHCP/DNS IPv4 server: %s", err)
143
144
145
go d4.Serve(9, 10)
146
plugin.dhcpdns = append(plugin.dhcpdns, d4)
0 commit comments