libnids icon indicating copy to clipboard operation
libnids copied to clipboard

libnids

Results 4 libnids issues
Sort by recently updated
recently updated
newest added

This allows the library to build successfully on newer architectures such as RISC-V.

Commit https://github.com/MITRECND/libnids/commit/cd888d80cbcd3a42f1ba12353b43ecac6a8dde99 changed SONAME but at a quick check, it doesn't seem like this was necessary. This breaks compatibility with applications already linked against older libnids and forces them to...

Using this issue to brainstorm packet processing library test cases

Libnids有多线程的模式,我看源码是通过一个异步的线程安全队列来实现的,libpcap 捕获到的流量存入异步队列,然后有另外的线程从异步队列中进行流量获取进行流量的还原,但是我发现源码中流量捕获与流量还原都是在单线程中完成的,难道Libnids的多线程说的只是流量捕获和流量还原不在同一个线程吗?