]> git.llucax.com Git - z.facultad/75.74/practicos.git/commitdiff
Mejora debug.
authorLeandro Lucarella <llucax@gmail.com>
Tue, 13 Jun 2006 04:43:17 +0000 (04:43 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Tue, 13 Jun 2006 04:43:17 +0000 (04:43 +0000)
practicas/pipi/src/Makefile
practicas/pipi/src/ipout.cpp

index 532b6b9d8ba46d2be17baf69d31b6e7aa46bc0e4..d312d83e9fcc5b1c99ef94a2aafcab337e3e0240 100644 (file)
@@ -18,7 +18,7 @@ CFLAGS = -Wall -ansi -pedantic-errors
 CFLAGS += -ggdb -DDEBUG
 
 # Para más verbose
-CFLAGS += -DDEBUG2
+#CFLAGS += -DDEBUG2
 
 # Opciones para el compilador C++.
 CXXFLAGS = $(CFLAGS) -fno-inline
index c98c4b5e7e9282cf34da1b74bd00e667c0eef3ed..84a3733f7b32e330dc1d9a74283e950c8007c465 100644 (file)
@@ -99,7 +99,7 @@ void IPOut::forward_loop()
         IPHeader iph(buf);
 #ifdef DEBUG
         std::cout << "IPOut::forward_loop (" << ip << "): A forwardear (id "
-                << iph.id << ")\n";
+                << iph.id << ", offset " << iph.offset << ")\n";
 #endif
         send(iph, buf.substr(iph.header_len()));
     }