This commit is contained in:
2025-09-07 20:29:55 +02:00
parent 2815ea6ea0
commit a7716a65c7
10 changed files with 78 additions and 95 deletions

View File

@@ -64,7 +64,7 @@ func (s *TCPServer) StartServer() {
for {
s.Conn, err = s.Listener.Accept()
Log.Info("Client connected", s.Conn.RemoteAddr().String())
Log.Info("Client connected: ", s.Conn.RemoteAddr().String())
if err != nil {
Log.Error("Could not accept connections to telnet server")
continue