From: /C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org Date: Wed, 9 Apr 2008 13:55:11 +0000 (+0000) Subject: Fix an inconsistency of field naming among the different tables and X-Git-Tag: ulogd-2.0.0beta2~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1f72b5c0a46de3cffefb4ebf6f2a8515d7eefcd;p=thirdparty%2Fulogd2.git Fix an inconsistency of field naming among the different tables and accross the stack NFCT IP2BIN MYSQL.In fact IP2BIN out .bin suffixed fields. Signed-off-by: Eric Leblond --- diff --git a/doc/mysql-ulogd2.sql b/doc/mysql-ulogd2.sql index bb31339..ed8d982 100644 --- a/doc/mysql-ulogd2.sql +++ b/doc/mysql-ulogd2.sql @@ -283,8 +283,8 @@ DROP VIEW IF EXISTS `conntrack`; CREATE SQL SECURITY INVOKER VIEW `conntrack` AS SELECT _ct_id, oob_family, - orig_ip_saddr AS orig_ip_saddr_raw, - orig_ip_daddr AS orig_ip_daddr_raw, + orig_ip_saddr AS orig_ip_saddr_bin, + orig_ip_daddr AS orig_ip_daddr_bin, orig_ip_protocol, orig_l4_sport, orig_l4_dport,