我想从非阻塞 tun/tap 文件描述符中读取 IP 数据包,tunfd
我将其设置tunfd
为非阻塞并在 libevent 中为它注册一个 READ_EV 事件。
当事件触发时,我先读取前 20 个字节以获取 IP 标头,然后再读取其余部分。
nr_bytes = read(tunfd, buf, 20);
...
ip_len = .... // here I get the IP length
....
nr_bytes = read(tunfd, buf+20, ip_len-20);
但是对于read(tunfd, buf+20, ip_len-20)
I got EAGAIN 错误,实际上应该有一个完整的数据包,所以应该有一些字节,为什么会出现这样的错误?
tunfd 与非阻塞模式或 libevent 不兼容?
谢谢!