2019-11-07 16:13:05 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
|
|
|
*
|
2020-05-02 08:08:26 +00:00
|
|
|
* Copyright (C) 2017-2020 WireGuard LLC. All Rights Reserved.
|
2019-11-07 16:13:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package device
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"golang.zx2c4.com/wireguard/conn"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TODO(crawshaw): this method is a compatibility shim. Replace with direct use of conn.
|
|
|
|
func (device *Device) BindSocketToInterface4(interfaceIndex uint32, blackhole bool) error {
|
|
|
|
if device.net.bind == nil {
|
|
|
|
return errors.New("Bind is not yet initialized")
|
|
|
|
}
|
|
|
|
|
|
|
|
if iface, ok := device.net.bind.(conn.BindToInterface); ok {
|
|
|
|
return iface.BindToInterface4(interfaceIndex, blackhole)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(crawshaw): this method is a compatibility shim. Replace with direct use of conn.
|
|
|
|
func (device *Device) BindSocketToInterface6(interfaceIndex uint32, blackhole bool) error {
|
|
|
|
if device.net.bind == nil {
|
|
|
|
return errors.New("Bind is not yet initialized")
|
|
|
|
}
|
|
|
|
|
|
|
|
if iface, ok := device.net.bind.(conn.BindToInterface); ok {
|
|
|
|
return iface.BindToInterface6(interfaceIndex, blackhole)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|