What is the analogue of an NDIS filter in linux?
问题 I am working on an as close to real-time system as possible in linux and need to send about 600-800 bytes in a TCP packet as soon as I receive a specific packet. For best possible latencies I want this packet to be sent directly from the kernel instead of it the received packet going all the way up to the userspace and the applicaiton and then making its way back. If I were on windows I'd have written an NDIS filter which I would cache the packet to be sent with and the matching parameters so