master
go 11 lines 293 Bytes
Raw
1 // SPDX-License-Identifier: GPL-3.0-or-later
2
3 //go:build linux || freebsd || openbsd || netbsd || dragonfly || darwin
4
5 package nsd
6
7 func (c *Collector) initNsdControlExec() (nsdControlBinary, error) {
8 nsdControl := newNsdControlExec(c.Timeout.Duration(), c.Logger)
9
10 return nsdControl, nil
11 }