wgengine/magicsock: remove unnecessary type assertions
Signed-off-by: Josh Bleecher Snyder <josharian@gmail.com>pull/1749/head
parent
98714e784b
commit
b1e624ef04
|
@ -2663,7 +2663,7 @@ func (c *Conn) Rebind() {
|
||||||
} else {
|
} else {
|
||||||
c.logf("magicsock: link change rebound port from %d to %d", oldPort, c.port)
|
c.logf("magicsock: link change rebound port from %d to %d", oldPort, c.port)
|
||||||
}
|
}
|
||||||
c.pconn4.pconn = packetConn.(*net.UDPConn)
|
c.pconn4.pconn = packetConn
|
||||||
c.pconn4.mu.Unlock()
|
c.pconn4.mu.Unlock()
|
||||||
} else {
|
} else {
|
||||||
c.logf("magicsock: link change, binding new port")
|
c.logf("magicsock: link change, binding new port")
|
||||||
|
@ -2672,7 +2672,7 @@ func (c *Conn) Rebind() {
|
||||||
c.logf("magicsock: link change failed to bind new port: %v", err)
|
c.logf("magicsock: link change failed to bind new port: %v", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
c.pconn4.Reset(packetConn.(*net.UDPConn))
|
c.pconn4.Reset(packetConn)
|
||||||
}
|
}
|
||||||
c.portMapper.SetLocalPort(c.LocalPort())
|
c.portMapper.SetLocalPort(c.LocalPort())
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue