]> git.llucax.com Git - z.facultad/75.74/practicos.git/blobdiff - practicas/pipi/src/libtcp.c
Cosas de Distribuidos I.
[z.facultad/75.74/practicos.git] / practicas / pipi / src / libtcp.c
index 68a6d2c52ff367814507f2d25f391efd734e4576..7709c9a6387d4d5e568bb39b6f37dbf35d380c6a 100644 (file)
@@ -71,7 +71,9 @@ int libtcp_open_activo (const char *server, int port)
  */
 int libtcp_open_pasivo (int port)
 {
  */
 int libtcp_open_pasivo (int port)
 {
+#ifdef DEBUG_LIBTCP
        char mostrar[80]; /* mensajes en la pantalla */ 
        char mostrar[80]; /* mensajes en la pantalla */ 
+#endif
        int     sockfd; /* socket que sirve como template */ 
        struct sockaddr_in      serv_addr;
 
        int     sockfd; /* socket que sirve como template */ 
        struct sockaddr_in      serv_addr;
 
@@ -95,7 +97,7 @@ int libtcp_open_pasivo (int port)
                return -1;
        }
 
                return -1;
        }
 
-#ifdef DEBUG2
+#ifdef DEBUG_LIBTCP
        sprintf (mostrar, "LibTcp::ServerPasivo: socket creado %d\n", sockfd);
        write (fileno(stdout), mostrar, strlen (mostrar));
 #endif
        sprintf (mostrar, "LibTcp::ServerPasivo: socket creado %d\n", sockfd);
        write (fileno(stdout), mostrar, strlen (mostrar));
 #endif
@@ -105,7 +107,7 @@ int libtcp_open_pasivo (int port)
                return -1;
        }
 
                return -1;
        }
 
-#ifdef DEBUG2
+#ifdef DEBUG_LIBTCP
        sprintf (mostrar, "LibTcp::Server: se hizo el bind\n");
        write(fileno(stdout), mostrar, strlen(mostrar));
 #endif
        sprintf (mostrar, "LibTcp::Server: se hizo el bind\n");
        write(fileno(stdout), mostrar, strlen(mostrar));
 #endif
@@ -113,7 +115,7 @@ int libtcp_open_pasivo (int port)
   /* Definir la cola de espera = hasta 5 clientes */
        listen(sockfd, 5);
 
   /* 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
        sprintf (mostrar, "LibTcp::Server: se hizo el listen con el socket %d\n", sockfd);
        write(fileno(stdout), mostrar, strlen(mostrar));
 #endif