From 798a0d2c52d178ba1788e57cf04bb27c205c0107 Mon Sep 17 00:00:00 2001 From: Brad Lunsford Date: Fri, 20 Oct 2017 15:11:29 -0700 Subject: [PATCH] Adding sleep time of 1 second if not waiting and code not present --- connect.go | 1 + 1 file changed, 1 insertion(+) diff --git a/connect.go b/connect.go index 0d6aa70..e82139f 100644 --- a/connect.go +++ b/connect.go @@ -210,6 +210,7 @@ func (c *Connection) runClient() error { encryptedData, salt, iv, sendersAddress := m[0], m[1], m[2], m[3] if sendersAddress == "0.0.0.0" { notPresent = true + time.Sleep(1 * time.Second) return } encryptedBytes, err := hex.DecodeString(encryptedData)