From 600890067c40e1846398db373b9c38b6fe9a16a6 Mon Sep 17 00:00:00 2001 From: Patrick McHardy Date: Tue, 26 Apr 2016 14:16:58 +0100 Subject: libnftnl: constify object arguments to various functions flow table support needs constant object arguments to printing functions to avoid ugly casts. While at it, also constify object arguments to message construction, destructor and a few helper functions. Signed-off-by: Patrick McHardy Signed-off-by: Pablo Neira Ayuso --- include/data_reg.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'include/data_reg.h') diff --git a/include/data_reg.h b/include/data_reg.h index 0f2ae9a..e749b5b 100644 --- a/include/data_reg.h +++ b/include/data_reg.h @@ -23,11 +23,13 @@ union nftnl_data_reg { }; }; -int nftnl_data_reg_snprintf(char *buf, size_t size, union nftnl_data_reg *reg, - uint32_t output_format, uint32_t flags, int reg_type); +int nftnl_data_reg_snprintf(char *buf, size_t size, + const union nftnl_data_reg *reg, + uint32_t output_format, uint32_t flags, + int reg_type); struct nlattr; int nftnl_parse_data(union nftnl_data_reg *data, struct nlattr *attr, int *type); -void nftnl_free_verdict(union nftnl_data_reg *data); +void nftnl_free_verdict(const union nftnl_data_reg *data); #endif -- cgit v1.2.3