Michael Yang
Michael Yang
This PR adds some missing netfilter constants from: - `linux/netfilter.h` - `linux/netfilter_arp.h` - `linux/netfilter_bridge.h` - `linux/netfilter_ipv4.h` - `linux/netfilter_ipv6.h` Unresolved questions: - [ ] `NF_NETDEV_NUMHOOKS` and `NF_NETDEV_INGRESS` were not moved from...
As explained in the doc comments, this adds multiple checks to ensure that the base chains are in fact valid to set. Currently, the `set_hook` and `set_type` are separate and...
This supersedes #53 - - - This change is [](https://reviewable.io/reviews/mullvad/nftnl-rs/62)
Implement #563.
## Description This adds scalable vector support through the new `ScalableVectorType` and `ScalableVectorValue`. ## Related Issue #541 ## How This Has Been Tested Tests mirroring the fixed vector kind have...
Scalable [vector](https://llvm.org/docs/LangRef.html#t-vector) was added to LLVM 11, to support vector extensions with compile-time-unknown vector length such as arm's SVE and RISC-V's [RVV](https://llvm.org/docs/RISCV/RISCVVectorExtension.html). llvm_sys has the `LLVMScalableVectorType`, but inkwell currently has...