netfilter
firewalling, NAT, and packet mangling for linux
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
log.c File Reference
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <arpa/inet.h>
#include <errno.h>
#include <linux/netfilter/nf_tables.h>
#include "internal.h"
#include <libmnl/libmnl.h>
#include <libnftnl/expr.h>
#include <libnftnl/rule.h>
#include "expr_ops.h"
#include <buffer.h>
Include dependency graph for log.c:

Data Structures

struct  nft_expr_log
 

Variables

struct expr_ops expr_ops_log
 

Variable Documentation

struct expr_ops expr_ops_log
Initial value:
= {
.name = "log",
.alloc_len = sizeof(struct nft_expr_log),
.max_attr = NFTA_LOG_MAX,
.free = nft_rule_expr_log_free,
.set = nft_rule_expr_log_set,
.get = nft_rule_expr_log_get,
.parse = nft_rule_expr_log_parse,
.build = nft_rule_expr_log_build,
.snprintf = nft_rule_expr_log_snprintf,
.xml_parse = nft_rule_expr_log_xml_parse,
.json_parse = nft_rule_expr_log_json_parse,
}
#define NFTA_LOG_MAX
Definition: nf_tables.h:713
Definition: log.c:26