X-Git-Url: https://git.llucax.com/z.facultad/75.74/practicos.git/blobdiff_plain/884eacf83ee1dd782e111952ca0ee468fafde9ad..78d6e1ce97611abe9f0d083033197773f93c33f7:/practicas/pipi/src/ipin.cpp diff --git a/practicas/pipi/src/ipin.cpp b/practicas/pipi/src/ipin.cpp index c8ea64e..1ff0560 100644 --- a/practicas/pipi/src/ipin.cpp +++ b/practicas/pipi/src/ipin.cpp @@ -27,7 +27,8 @@ void IPIn::drop(const std::string& msg, const IPHeader& iph) } /// Recibe un paquete IP -std::string IPIn::recv(uint8_t proto, IPAddr& src, IPAddr& dst) throw (std::runtime_error) +std::string IPIn::recv(uint8_t& proto, IPAddr& src, IPAddr& dst) + throw (std::runtime_error) { while (true) { @@ -87,8 +88,8 @@ std::string IPIn::recv(uint8_t proto, IPAddr& src, IPAddr& dst) throw (std::runt // Es para nosotros y somos un host // Guarda en buffer buffer[iph][iph.offset] = buf.substr(iph.header_len()); - // Si tiene más fragmentos o es un protocolo distinto, sigo - if (iph.mf || (iph.proto != proto)) + // Si tiene más fragmentos, sigo + if (iph.mf) continue; // No hay más fragmentos, reensamblamos (de ser necesario) std::string data; @@ -106,6 +107,7 @@ std::string IPIn::recv(uint8_t proto, IPAddr& src, IPAddr& dst) throw (std::runt //TODO faltaría limpiar fragmentos viejos cada tanto (timer?) src = iph.src; dst = iph.dst; + proto = iph.proto; return data; } }