How can I read from a TAP device (via posix::stream_descriptor) simultaneously with Boost.Asio?
https://stackoverflow.com/questions/78143322/how-can-i-read-from-a-tap-device-via-posixstream-descriptor-simultaneously-w
https://codeberg.org/mark22k/cpp_tap_device
How can I read from a TAP device (via posix::stream_descriptor) simultaneously with Boost.Asio?
My program should simultaneously read packets from a generated TAP device and process them. For this I use the tuntap library from LaKabane together with Boost.Asio's posix::stream_descriptor. Howe...