Open
Description
Hi, I notice that the current linklayer interfaces in INET are all in the output queue model, that is, packets are queued at the output port. Take the EthernetMacBase mdule in EthernetInterface.ned as an example,
it needs to bind a queue as its buffer txQueue in the initialize() function using the getQueue() function.
This is fine for host nodes, but for switches, we know that there are more input-queued switches in reality, that is, packets are queued at the input port of the switch. And there are many protocols that rely on this feature, such as the flow control mechanism PFC (priority flow control) in data centers. I would like to know if INET has an input-queued linklayer interface or if there will be one in the future?