mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-18 09:04:49 -04:00
Propagate packet from IP -> UDP
This commit is contained in:
parent
294bab5c58
commit
12bf0aba4c
@ -11,6 +11,7 @@
|
|||||||
#include "net/ip_layer.hpp"
|
#include "net/ip_layer.hpp"
|
||||||
#include "net/ethernet_layer.hpp"
|
#include "net/ethernet_layer.hpp"
|
||||||
#include "net/icmp_layer.hpp"
|
#include "net/icmp_layer.hpp"
|
||||||
|
#include "net/udp_layer.hpp"
|
||||||
#include "net/arp_cache.hpp"
|
#include "net/arp_cache.hpp"
|
||||||
|
|
||||||
#include "logging.hpp"
|
#include "logging.hpp"
|
||||||
@ -110,7 +111,7 @@ void network::ip::decode(network::interface_descriptor& interface, network::ethe
|
|||||||
} else if(protocol == 0x06){
|
} else if(protocol == 0x06){
|
||||||
logging::logf(logging::log_level::ERROR, "ip: TCP packet detected (unsupported)\n");
|
logging::logf(logging::log_level::ERROR, "ip: TCP packet detected (unsupported)\n");
|
||||||
} else if(protocol == 0x11){
|
} else if(protocol == 0x11){
|
||||||
logging::logf(logging::log_level::ERROR, "ip: UDP packet detected (unsupported)\n");
|
network::udp::decode(interface, packet);
|
||||||
} else {
|
} else {
|
||||||
logging::logf(logging::log_level::ERROR, "ip: Packet of unknown protocol detected (%h)\n", size_t(protocol));
|
logging::logf(logging::log_level::ERROR, "ip: Packet of unknown protocol detected (%h)\n", size_t(protocol));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user