From b4c3a23c884c24f4e5d941fb928cf49561a9cdf9 Mon Sep 17 00:00:00 2001 From: "/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org" Date: Tue, 19 Dec 2006 17:41:53 +0000 Subject: Introduce the new libnetfilter_conntrack API, features: - object oriented infrastructure - extensible and configurable output (XML) - low level functions to interact with netlink details - fairly documented Still backward compatible. --- src/conntrack/snprintf.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/conntrack/snprintf.c (limited to 'src/conntrack/snprintf.c') diff --git a/src/conntrack/snprintf.c b/src/conntrack/snprintf.c new file mode 100644 index 0000000..0c500b7 --- /dev/null +++ b/src/conntrack/snprintf.c @@ -0,0 +1,36 @@ +/* + * (C) 2006 by Pablo Neira Ayuso + * + * This software may be used and distributed according to the terms + * of the GNU General Public License, incorporated herein by reference. + */ + +#include "internal.h" + +int __snprintf_conntrack(char *buf, + unsigned int len, + const struct nf_conntrack *ct, + unsigned int type, + unsigned int msg_output, + unsigned int flags) +{ + int size; + + switch(msg_output) { + case NFCT_O_DEFAULT: + size = __snprintf_conntrack_default(buf, len, ct, type, flags); + break; + case NFCT_O_XML: + size = __snprintf_conntrack_xml(buf, len, ct, type, flags); + break; + default: + errno = ENOENT; + return -1; + } + + /* NULL terminated string */ + if (snprintf(buf+size, len-size, "\0") == -1) + return -1; + + return size; +} -- cgit v1.2.3