From: Victor Julien Date: Thu, 30 Jan 2014 12:58:28 +0000 (+0100) Subject: json tls log: rename to output-json-tls X-Git-Tag: suricata-2.0rc1~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efd4c42c0a0b0c30043aa02f49a1dade9cb56fd6;p=thirdparty%2Fsuricata.git json tls log: rename to output-json-tls --- diff --git a/src/Makefile.am b/src/Makefile.am index bdc3482531..4723747081 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -221,10 +221,10 @@ output-json-dns.c output-json-dns.h \ output-json-drop.c output-json-drop.h \ output-json-file.c output-json-file.h \ output-json-http.c output-json-http.h \ +output-json-tls.c output-json-tls.h \ output-packet.c output-packet.h \ output-tx.c output-tx.h \ output-json.c output-json.h \ -output-tlslog.c output-tlslog.h \ packet-queue.c packet-queue.h \ pkt-var.c pkt-var.h \ reputation.c reputation.h \ diff --git a/src/output-json-drop.h b/src/output-json-drop.h index 5f9f9f09c3..c02057c14c 100644 --- a/src/output-json-drop.h +++ b/src/output-json-drop.h @@ -23,7 +23,7 @@ */ #ifndef __OUTPUT_JSON_DROP_H__ -#define __OUTPUT_JSON_DROP_H__ +#define __OUTPUT_JSON_DROP_H__ void TmModuleJsonDropLogRegister (void); diff --git a/src/output-tlslog.c b/src/output-json-tls.c similarity index 99% rename from src/output-tlslog.c rename to src/output-json-tls.c index 016f6df593..4b859fda40 100644 --- a/src/output-tlslog.c +++ b/src/output-json-tls.c @@ -39,7 +39,6 @@ #include "util-debug.h" #include "app-layer-parser.h" #include "output.h" -#include "log-tlslog.h" #include "app-layer-ssl.h" #include "app-layer.h" #include "util-privs.h" diff --git a/src/output-tlslog.h b/src/output-json-tls.h similarity index 89% rename from src/output-tlslog.h rename to src/output-json-tls.h index b6e52abf3a..931414f301 100644 --- a/src/output-tlslog.h +++ b/src/output-json-tls.h @@ -21,9 +21,9 @@ * \author Tom DeCanio */ -#ifndef __OUTPUT_TLSLOG_H__ -#define __OUTPUT_TLSLOG_H__ +#ifndef __OUTPUT_JSON_TLS_H__ +#define __OUTPUT_JSON_TLS_H__ void TmModuleJsonTlsLogRegister (void); -#endif /* __OUTPUT_TLSLOG_H__ */ +#endif /* __OUTPUT_JSON_TLS_H__ */ diff --git a/src/suricata.c b/src/suricata.c index 7e93be6773..8df3bfb8ae 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -87,7 +87,7 @@ #include "log-dnslog.h" #include "output-json-dns.h" #include "log-tlslog.h" -#include "output-tlslog.h" +#include "output-json-tls.h" #include "log-pcap.h" #include "log-file.h" #include "output-json-file.h"