aboutsummaryrefslogtreecommitdiffstats
path: root/device/send.go
diff options
context:
space:
mode:
Diffstat (limited to 'device/send.go')
-rw-r--r--device/send.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/device/send.go b/device/send.go
index c4aa5b9..72633be 100644
--- a/device/send.go
+++ b/device/send.go
@@ -220,10 +220,7 @@ func (device *Device) SendHandshakeCookie(initiatingElem *QueueHandshakeElement)
writer := bytes.NewBuffer(buff[:0])
binary.Write(writer, binary.LittleEndian, reply)
device.net.bind.Send(writer.Bytes(), initiatingElem.endpoint)
- if err != nil {
- device.log.Error.Println("Failed to send cookie reply:", err)
- }
- return err
+ return nil
}
func (peer *Peer) keepKeyFreshSending() {