wgengine/magicsock: fix two comments

Signed-off-by: Josh Bleecher Snyder <josharian@gmail.com>
pull/1749/head
Josh Bleecher Snyder 3 years ago
parent b1e624ef04
commit a2a2c0ce1c

@ -2767,7 +2767,7 @@ type RebindingUDPConn struct {
pconn net.PacketConn
}
// currentConn returns c's current pconn and whether it is (fake) closed.
// currentConn returns c's current pconn.
func (c *RebindingUDPConn) currentConn() (pconn net.PacketConn) {
c.mu.Lock()
defer c.mu.Unlock()
@ -2785,7 +2785,7 @@ func (c *RebindingUDPConn) Reset(pconn net.PacketConn) {
}
}
// ReadFromNetaddr reads a packet from c into b.
// ReadFrom reads a packet from c into b.
// It returns the number of bytes copied and the source address.
func (c *RebindingUDPConn) ReadFrom(b []byte) (int, net.Addr, error) {
for {

Loading…
Cancel
Save