X-Git-Url: https://git.llucax.com/z.facultad/75.74/practicos.git/blobdiff_plain/cc20509697bcad0600d4622c275b53ac65445776..5f8ce7344f3e7cba2f4c7a8dbe17471a0387e92d:/practicas/pipi/src/routetable.cpp diff --git a/practicas/pipi/src/routetable.cpp b/practicas/pipi/src/routetable.cpp index 43e3377..f8e6cbd 100644 --- a/practicas/pipi/src/routetable.cpp +++ b/practicas/pipi/src/routetable.cpp @@ -13,9 +13,9 @@ void RouteTable::add(const IPAddr& net, const IPAddr& gw, unsigned mtu, unsigned metric, Dev& iface) { table[net] = Route(gw, metric, mtu, iface); -#ifdef DEBUG - //std::cout << "Se agregó tabla para " << net << ": gw = " << gw - // << ", metric = " << metric << "\n"; +#ifdef DEBUG_ROUTE + std::cout << "Se agregó tabla para " << net << ": gw = " << gw + << ", metric = " << metric << "\n"; #endif }