From d5fc969e578a1e3a3eccb03b1586cbadd58107a5 Mon Sep 17 00:00:00 2001 From: Jaap Keuter Date: Wed, 22 Apr 2020 15:36:25 +0200 Subject: No explicit glib.h include required Stop including glib.h in dissectors, this will come in implicitly with packet.h including proto.h, an essential include file for dissectors. While at it, config.h is no longer conditional and stdio.h is usually not needed either. Some other cleanups too. Change-Id: I60c12f16d7ef1e6398509293031ffed7460d2c61 Reviewed-on: https://code.wireshark.org/review/36969 Reviewed-by: Orgad Shaneh Petri-Dish: Jaap Keuter Tested-by: Petri Dish Buildbot Reviewed-by: Peter Wu --- epan/dissectors/packet-knxip.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'epan/dissectors/packet-knxip.c') diff --git a/epan/dissectors/packet-knxip.c b/epan/dissectors/packet-knxip.c index d91f7aa8a3..1e31529408 100644 --- a/epan/dissectors/packet-knxip.c +++ b/epan/dissectors/packet-knxip.c @@ -17,9 +17,21 @@ * * for the specifications. */ -#include "packet-knxip.h" + +#include +#include + +#include +#include +#include +#include +#include +#include #include +#include "packet-knxip.h" +#include "packet-knxip_decrypt.h" + #define ECDH_PUBLIC_VALUE_SIZE 32 /* The following service families are defined for the -- cgit v1.2.3