Mark non-SSL clients

This commit is contained in:
Trevor Slocum 2017-12-20 17:01:52 -08:00
parent 5adbcbb640
commit 6d21adbc13
1 changed files with 1 additions and 1 deletions

View File

@ -1473,7 +1473,7 @@ func (s *Server) listenPlain() {
log.Println("Error accepting connection:", err)
continue
}
go s.handleConnection(conn, true)
go s.handleConnection(conn, false)
}
}
listen.Close()