File: bindtodevice_windows.go

package info (click to toggle)
golang-github-insomniacslk-dhcp 0.0~git20220915.043f172-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,168 kB
  • sloc: makefile: 6
file content (8 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
package interfaces

import "errors"

// BindToInterface fails on Windows.
func BindToInterface(fd int, ifname string) error {
	return errors.New("not implemented on Windows")
}