File: bindtodevice_windows.go

package info (click to toggle)
golang-github-insomniacslk-dhcp 0.0~git20251020.175e84f-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,104 kB
  • sloc: makefile: 3
file content (8 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (3)
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")
}