From 7d9a369a661bc5883e95a0f4a8f7feceda7e8e31 Mon Sep 17 00:00:00 2001 From: shoopea Date: Mon, 22 Jun 2020 11:09:16 +0200 Subject: [PATCH] test --- main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 5e932df..422f9d2 100644 --- a/main.go +++ b/main.go @@ -29,13 +29,16 @@ var ( githash string buildstamp string commits string + + conn net.Conn ) func main() { + var err error clients = make(map[uint32]*Client) - conn, err := net.Dial("tcp", "poop.siteop.biz:3977") + conn, err = net.Dial("tcp", "poop.siteop.biz:3977") failError(err, "net.Dial") logInfoDebug("Connected to poop.siteop.biz:3977")