use TableFamilyUnspecified (NFPROTO_UNSPEC) instead of AF_UNSPEC (#165)
This commit is contained in:
parent
58da7d8bf3
commit
06687b6e34
2
chain.go
2
chain.go
|
@ -184,7 +184,7 @@ func (cc *Conn) ListChains() ([]*Chain, error) {
|
||||||
Type: netlink.HeaderType((unix.NFNL_SUBSYS_NFTABLES << 8) | unix.NFT_MSG_GETCHAIN),
|
Type: netlink.HeaderType((unix.NFNL_SUBSYS_NFTABLES << 8) | unix.NFT_MSG_GETCHAIN),
|
||||||
Flags: netlink.Request | netlink.Dump,
|
Flags: netlink.Request | netlink.Dump,
|
||||||
},
|
},
|
||||||
Data: extraHeader(uint8(unix.AF_UNSPEC), 0),
|
Data: extraHeader(uint8(TableFamilyUnspecified), 0),
|
||||||
}
|
}
|
||||||
|
|
||||||
response, err := conn.Execute(msg)
|
response, err := conn.Execute(msg)
|
||||||
|
|
15
table.go
15
table.go
|
@ -28,12 +28,13 @@ type TableFamily byte
|
||||||
|
|
||||||
// Possible TableFamily values.
|
// Possible TableFamily values.
|
||||||
const (
|
const (
|
||||||
TableFamilyINet TableFamily = unix.NFPROTO_INET
|
TableFamilyUnspecified TableFamily = unix.NFPROTO_UNSPEC
|
||||||
TableFamilyIPv4 TableFamily = unix.NFPROTO_IPV4
|
TableFamilyINet TableFamily = unix.NFPROTO_INET
|
||||||
TableFamilyIPv6 TableFamily = unix.NFPROTO_IPV6
|
TableFamilyIPv4 TableFamily = unix.NFPROTO_IPV4
|
||||||
TableFamilyARP TableFamily = unix.NFPROTO_ARP
|
TableFamilyIPv6 TableFamily = unix.NFPROTO_IPV6
|
||||||
TableFamilyNetdev TableFamily = unix.NFPROTO_NETDEV
|
TableFamilyARP TableFamily = unix.NFPROTO_ARP
|
||||||
TableFamilyBridge TableFamily = unix.NFPROTO_BRIDGE
|
TableFamilyNetdev TableFamily = unix.NFPROTO_NETDEV
|
||||||
|
TableFamilyBridge TableFamily = unix.NFPROTO_BRIDGE
|
||||||
)
|
)
|
||||||
|
|
||||||
// A Table contains Chains. See also
|
// A Table contains Chains. See also
|
||||||
|
@ -111,7 +112,7 @@ func (cc *Conn) ListTables() ([]*Table, error) {
|
||||||
Type: netlink.HeaderType((unix.NFNL_SUBSYS_NFTABLES << 8) | unix.NFT_MSG_GETTABLE),
|
Type: netlink.HeaderType((unix.NFNL_SUBSYS_NFTABLES << 8) | unix.NFT_MSG_GETTABLE),
|
||||||
Flags: netlink.Request | netlink.Dump,
|
Flags: netlink.Request | netlink.Dump,
|
||||||
},
|
},
|
||||||
Data: extraHeader(uint8(unix.AF_UNSPEC), 0),
|
Data: extraHeader(uint8(TableFamilyUnspecified), 0),
|
||||||
}
|
}
|
||||||
|
|
||||||
response, err := conn.Execute(msg)
|
response, err := conn.Execute(msg)
|
||||||
|
|
Loading…
Reference in New Issue