tcp server 用于给andriod 客户端定时发送消息
liuxiaolong
2019-06-04 280fb9f29ed4a0cf392974c5bf0eac1f586d1fac
server.go
@@ -5,6 +5,7 @@
   "fmt"
   "net"
   "strconv"
   "strings"
   "time"
   "github.com/long/test/esutil"
@@ -43,7 +44,9 @@
   for {
      conn, err := listener.Accept()//
      ipStr := conn.RemoteAddr().String()
      clientIpPort := conn.RemoteAddr().String()
      index := strings.Index(clientIpPort, ":")
      ipStr := clientIpPort[:index-1]
      if oldConn,ok := ipMap[ipStr];ok {
         oldConn.Close()
      }