|
@@ -92,6 +92,7 @@ static int nft_log_init(const struct nft_ctx *ctx,
|
|
|
case NF_LOG_TYPE_ULOG:
|
|
|
li->u.ulog.group = ntohs(nla_get_be16(tb[NFTA_LOG_GROUP]));
|
|
|
if (tb[NFTA_LOG_SNAPLEN] != NULL) {
|
|
|
+ li->u.ulog.flags |= NF_LOG_F_COPY_LEN;
|
|
|
li->u.ulog.copy_len =
|
|
|
ntohl(nla_get_be32(tb[NFTA_LOG_SNAPLEN]));
|
|
|
}
|
|
@@ -149,7 +150,7 @@ static int nft_log_dump(struct sk_buff *skb, const struct nft_expr *expr)
|
|
|
if (nla_put_be16(skb, NFTA_LOG_GROUP, htons(li->u.ulog.group)))
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
- if (li->u.ulog.copy_len) {
|
|
|
+ if (li->u.ulog.flags & NF_LOG_F_COPY_LEN) {
|
|
|
if (nla_put_be32(skb, NFTA_LOG_SNAPLEN,
|
|
|
htonl(li->u.ulog.copy_len)))
|
|
|
goto nla_put_failure;
|