]> git.llucax.com Git - z.facultad/75.74/practicos.git/blobdiff - practicas/pipi/src/libtcp.c
Se emprolija un poco la info de debug.
[z.facultad/75.74/practicos.git] / practicas / pipi / src / libtcp.c
index 68a6d2c52ff367814507f2d25f391efd734e4576..3184ff251b84c108257d4d70e8e6e67e1bc32f9f 100644 (file)
@@ -95,7 +95,7 @@ int libtcp_open_pasivo (int port)
                return -1;
        }
 
-#ifdef DEBUG2
+#ifdef DEBUG_LIBTCP
        sprintf (mostrar, "LibTcp::ServerPasivo: socket creado %d\n", sockfd);
        write (fileno(stdout), mostrar, strlen (mostrar));
 #endif
@@ -105,7 +105,7 @@ int libtcp_open_pasivo (int port)
                return -1;
        }
 
-#ifdef DEBUG2
+#ifdef DEBUG_LIBTCP
        sprintf (mostrar, "LibTcp::Server: se hizo el bind\n");
        write(fileno(stdout), mostrar, strlen(mostrar));
 #endif
@@ -113,7 +113,7 @@ int libtcp_open_pasivo (int port)
   /* Definir la cola de espera = hasta 5 clientes */
        listen(sockfd, 5);
 
-#ifdef DEBUG2
+#ifdef DEBUG_LIBTCP
        sprintf (mostrar, "LibTcp::Server: se hizo el listen con el socket %d\n", sockfd);
        write(fileno(stdout), mostrar, strlen(mostrar));
 #endif