fix: dhcp ifacename type
This commit is contained in:
parent
336d3482d6
commit
8fa6b3024f
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@ package dns
|
|||
|
||||
import (
|
||||
"context"
|
||||
"go.uber.org/atomic"
|
||||
"net"
|
||||
"net/netip"
|
||||
"sync"
|
||||
|
@ -71,7 +72,7 @@ func (d *dhcpClient) resolve(ctx context.Context) (*Resolver, error) {
|
|||
for _, item := range dns {
|
||||
nameserver = append(nameserver, NameServer{
|
||||
Addr: net.JoinHostPort(item.String(), "53"),
|
||||
Interface: d.ifaceName,
|
||||
Interface: atomic.NewString(d.ifaceName),
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue