]> git.llucax.com Git - z.facultad/75.74/practicos.git/commitdiff
Se hace que se imprima info de debug solo para DEBUG2.
authorLeandro Lucarella <llucax@gmail.com>
Thu, 22 Jun 2006 14:51:50 +0000 (14:51 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 22 Jun 2006 14:51:50 +0000 (14:51 +0000)
practicas/pipi/src/libtcp.c

index a3aea62b05c65d92c07c16b91d378d7767855772..68a6d2c52ff367814507f2d25f391efd734e4576 100644 (file)
@@ -95,22 +95,28 @@ int libtcp_open_pasivo (int port)
                return -1;
        }
 
+#ifdef DEBUG2
        sprintf (mostrar, "LibTcp::ServerPasivo: socket creado %d\n", sockfd);
        write (fileno(stdout), mostrar, strlen (mostrar));
+#endif
 
        /* Vincular el socket con la direccion local */
        if (bind (sockfd, (struct sockaddr *) &serv_addr, sizeof (serv_addr)) < 0) {
                return -1;
        }
 
+#ifdef DEBUG2
        sprintf (mostrar, "LibTcp::Server: se hizo el bind\n");
        write(fileno(stdout), mostrar, strlen(mostrar));
+#endif
 
   /* Definir la cola de espera = hasta 5 clientes */
        listen(sockfd, 5);
 
+#ifdef DEBUG2
        sprintf (mostrar, "LibTcp::Server: se hizo el listen con el socket %d\n", sockfd);
        write(fileno(stdout), mostrar, strlen(mostrar));
+#endif
 
        return sockfd;
 }