Go to file
TheDiveO d1d398adb7
alignedbuff: fix alignment test issue on 32-bit machines (#211)
- fixes issue #209 where two unit tests for alignedbuff were incorrectly calculating the expected marshalled data length on 32bit machines (whereas actual padding/alignment itself was done correctly).
- adds documentation reference to kernel's xtables.h UAPI regarding alignment.
2022-12-12 08:51:36 +01:00
.github/workflows GitHub Actions: bump to Go 1.19 2022-08-07 10:19:50 +02:00
alignedbuff alignedbuff: fix alignment test issue on 32-bit machines (#211) 2022-12-12 08:51:36 +01:00
binaryutil add int32 and string types to alignedbuff (#195) 2022-10-15 21:04:45 +02:00
expr Reject expression fix (#206) 2022-11-07 20:04:33 +01:00
internal Added dynset exprs support (#173) 2022-07-29 18:32:59 +02:00
xt Fix: add missed parameters of struct ConntrackMtinfoBase (#182) 2022-09-04 20:05:03 +02:00
CONTRIBUTING.md Initial commit 2018-05-24 22:09:26 -07:00
LICENSE Initial commit 2018-05-24 22:09:26 -07:00
README.md README: switch to GitHub actions badge 2021-05-14 17:48:51 +02:00
chain.go added ability to create regular chains without a hook priority (#183) 2022-09-06 17:27:20 +02:00
compat_policy.go Fix: add NFTA_RULE_COMPAT attribute (#207) 2022-12-08 09:05:15 +01:00
compat_policy_test.go Fix: add NFTA_RULE_COMPAT attribute (#207) 2022-12-08 09:05:15 +01:00
conn.go Fix incorrect netlink acknowledgement handling (#194) 2022-10-02 16:01:48 +02:00
counter.go Add GetObject/GetObjects, ResetObject/ResetObjects (#92) 2020-01-21 08:36:27 +01:00
doc.go Restructure code base into smaller files (#15) 2019-05-03 23:54:09 +02:00
flowtable.go Flowtables implementation (#201) 2022-11-01 07:48:00 +01:00
go.mod bump go.mod version to go 1.17 2022-05-02 17:29:23 +02:00
go.sum bump go.mod version to go 1.17 2022-05-02 17:29:23 +02:00
nftables_test.go Fix: add NFTA_RULE_COMPAT attribute (#207) 2022-12-08 09:05:15 +01:00
obj.go Fix incorrect netlink acknowledgement handling (#194) 2022-10-02 16:01:48 +02:00
rule.go Fix: add NFTA_RULE_COMPAT attribute (#207) 2022-12-08 09:05:15 +01:00
set.go Fix size for TypeTimeHour (#203) 2022-11-01 21:27:48 +01:00
set_test.go Support for concat set intervals (#155) 2022-04-22 17:12:20 +02:00
table.go Added dynset exprs support (#173) 2022-07-29 18:32:59 +02:00
util.go Restructure code base into smaller files (#15) 2019-05-03 23:54:09 +02:00

README.md

Build Status GoDoc

This is not the correct repository for issues with the Linux nftables project! This repository contains a third-party Go package to programmatically interact with nftables. Find the official nftables website at https://wiki.nftables.org/

This package manipulates Linux nftables (the iptables successor). It is implemented in pure Go, i.e. does not wrap libnftnl.

This is not an official Google product.

Breaking changes

This package is in very early stages, and only contains enough data types and functions to install very basic nftables rules. It is likely that mistakes with the data types/API will be identified as more functionality is added.

Contributions

Contributions are very welcome!