mirror of
https://github.com/golang/go
synced 2024-11-21 16:04:45 -07:00
net, syscall: remove BindToDevice API from UDPConn, IPConn
For now a pair of socket options SOL_SOCKET and SO_BINDTODEVICE is supported on Linux only. I'd like to demote BindToDevice API to syscall level because it's Linux dependent one. In the near future, probably we may have a bit more portable API that using IPROTO_IP/IPV6 level socket options to specify, identify an inbound, outbound IP interface on incoming, outgoing UDP and raw IP packets. R=cw, golang-dev CC=golang-dev https://golang.org/cl/5447071
This commit is contained in:
parent
30775f67e7
commit
cf4acf80b4
@ -267,16 +267,6 @@ func ListenIP(netProto string, laddr *IPAddr) (c *IPConn, err error) {
|
||||
return newIPConn(fd), nil
|
||||
}
|
||||
|
||||
// BindToDevice binds an IPConn to a network interface.
|
||||
func (c *IPConn) BindToDevice(device string) error {
|
||||
if !c.ok() {
|
||||
return os.EINVAL
|
||||
}
|
||||
c.fd.incref()
|
||||
defer c.fd.decref()
|
||||
return os.NewSyscallError("setsockopt", syscall.BindToDevice(c.fd.sysfd, device))
|
||||
}
|
||||
|
||||
// File returns a copy of the underlying os.File, set to blocking mode.
|
||||
// It is the caller's responsibility to close f when finished.
|
||||
// Closing c does not affect f, and closing f does not affect c.
|
||||
|
@ -111,11 +111,6 @@ func setReuseAddr(fd *netFD, reuse bool) error {
|
||||
return setsockoptInt(fd, syscall.SOL_SOCKET, syscall.SO_REUSEADDR, boolint(reuse))
|
||||
}
|
||||
|
||||
func bindToDevice(fd *netFD, dev string) error {
|
||||
// TODO(rsc): call setsockopt with null-terminated string pointer
|
||||
return os.EINVAL
|
||||
}
|
||||
|
||||
func setDontRoute(fd *netFD, dontroute bool) error {
|
||||
fd.incref()
|
||||
defer fd.decref()
|
||||
|
@ -240,16 +240,6 @@ func ListenUDP(net string, laddr *UDPAddr) (c *UDPConn, err error) {
|
||||
return newUDPConn(fd), nil
|
||||
}
|
||||
|
||||
// BindToDevice binds a UDPConn to a network interface.
|
||||
func (c *UDPConn) BindToDevice(device string) error {
|
||||
if !c.ok() {
|
||||
return os.EINVAL
|
||||
}
|
||||
c.fd.incref()
|
||||
defer c.fd.decref()
|
||||
return os.NewSyscallError("setsockopt", syscall.BindToDevice(c.fd.sysfd, device))
|
||||
}
|
||||
|
||||
// File returns a copy of the underlying os.File, set to blocking mode.
|
||||
// It is the caller's responsibility to close f when finished.
|
||||
// Closing c does not affect f, and closing f does not affect c.
|
||||
|
@ -522,15 +522,6 @@ func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) {
|
||||
return
|
||||
}
|
||||
|
||||
// TODO:
|
||||
// FreeBSD has IP_SENDIF. Darwin probably needs BSDLLCTest, see:
|
||||
// http://developer.apple.com/mac/library/samplecode/BSDLLCTest/index.html
|
||||
|
||||
// BindToDevice binds the socket associated with fd to device.
|
||||
func BindToDevice(fd int, device string) (err error) {
|
||||
return ENOSYS
|
||||
}
|
||||
|
||||
//sys kevent(kq int, change uintptr, nchange int, event uintptr, nevent int, timeout *Timespec) (n int, err error)
|
||||
|
||||
func Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n int, err error) {
|
||||
|
@ -650,7 +650,6 @@ func SetsockoptIPMreq(fd Handle, level, opt int, mreq *IPMreq) (err error) {
|
||||
return Setsockopt(fd, int32(level), int32(opt), (*byte)(unsafe.Pointer(mreq)), int32(unsafe.Sizeof(*mreq)))
|
||||
}
|
||||
func SetsockoptIPv6Mreq(fd Handle, level, opt int, mreq *IPv6Mreq) (err error) { return EWINDOWS }
|
||||
func BindToDevice(fd Handle, device string) (err error) { return EWINDOWS }
|
||||
|
||||
// TODO(brainman): fix all needed for os
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user