summaryrefslogtreecommitdiffhomepage
path: root/interfaces/bindtodevice_windows.go
blob: 6de9b4d03feb8f7087d16d8a0b8390617e923832 (plain)
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")
}