aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-02-10 07:16:08 +0000
committerJoão Valverde <j@v6e.pt>2016-02-13 23:51:53 +0000
commit2e85975feee4304ebc3e47c3b03653094b839b6c (patch)
tree49e3d4ba3ff3b04108621ea37d0b0e91e5598f76 /epan
parentd55f176a2472077eaad9315d525696d24b571e05 (diff)
Just #include wsutil/inet_aton.h
No need for platform-specific system header boilerplate. Change-Id: I5387a0005ddb0d7aab3c5b9f28d6282053c1b0fd Reviewed-on: https://code.wireshark.org/review/13865 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'epan')
-rw-r--r--epan/addr_resolv.c5
-rw-r--r--epan/dissectors/packet-aeron.c11
-rw-r--r--epan/dissectors/packet-dcom.c18
-rw-r--r--epan/dissectors/packet-lbm.h2
-rw-r--r--epan/dissectors/packet-lbmr.c11
-rw-r--r--epan/dissectors/packet-lbtrm.c11
6 files changed, 13 insertions, 45 deletions
diff --git a/epan/addr_resolv.c b/epan/addr_resolv.c
index 0d85637f33..b8b0fe18c2 100644
--- a/epan/addr_resolv.c
+++ b/epan/addr_resolv.c
@@ -85,10 +85,6 @@
#include <winsock2.h> /* needed to define AF_ values on Windows */
#endif
-#ifndef HAVE_INET_ATON
-# include "wsutil/inet_aton.h"
-#endif
-
#ifdef NEED_INET_V6DEFS_H
# include "wsutil/inet_v6defs.h"
#endif
@@ -125,6 +121,7 @@
#include <wsutil/report_err.h>
#include <wsutil/file_util.h>
#include <wsutil/pint.h>
+#include "wsutil/inet_aton.h"
#include <epan/strutil.h>
#include <epan/to_str-int.h>
diff --git a/epan/dissectors/packet-aeron.c b/epan/dissectors/packet-aeron.c
index 143a93d018..86fa70bc63 100644
--- a/epan/dissectors/packet-aeron.c
+++ b/epan/dissectors/packet-aeron.c
@@ -20,12 +20,7 @@
*/
#include "config.h"
-#ifdef HAVE_ARPA_INET_H
- #include <arpa/inet.h>
-#endif
-#if HAVE_WINSOCK2_H
- #include <winsock2.h>
-#endif
+
#include <epan/packet.h>
#include <epan/prefs.h>
#include <epan/expert.h>
@@ -34,9 +29,7 @@
#include <epan/conversation.h>
#include <epan/exceptions.h>
#include <epan/to_str.h>
-#ifndef HAVE_INET_ATON
- #include <wsutil/inet_aton.h>
-#endif
+#include <wsutil/inet_aton.h>
#include <wsutil/pint.h>
/* The Aeron protocol is defined at https://github.com/real-logic/Aeron/wiki/Protocol-Specification */
diff --git a/epan/dissectors/packet-dcom.c b/epan/dissectors/packet-dcom.c
index e41a12e0af..3225a7465e 100644
--- a/epan/dissectors/packet-dcom.c
+++ b/epan/dissectors/packet-dcom.c
@@ -65,22 +65,12 @@
#include "config.h"
-#ifdef HAVE_ARPA_INET_H
-#include <arpa/inet.h>
-#endif
-
-#ifdef HAVE_WINSOCK2_H
-#include <winsock2.h>
-#endif
-
#include <string.h>
#include <epan/packet.h>
#include <epan/exceptions.h>
#include <epan/addr_resolv.h>
-#ifndef HAVE_INET_ATON
#include <wsutil/inet_aton.h>
-#endif
#include <epan/expert.h>
#include <epan/prefs.h>
#include "packet-dcerpc.h"
@@ -265,17 +255,17 @@ void dcom_interface_dump(void) {
for(machines = dcom_machines; machines != NULL; machines = g_list_next(machines)) {
machine = (dcom_machine_t *)machines->data;
- g_warning("Machine(#%4u): IP:%s", machine->first_packet, address_to_str(wmem_packet_scope(), &machine->ip));
+ /*g_warning("Machine(#%4u): IP:%s", machine->first_packet, address_to_str(wmem_packet_scope(), &machine->ip));*/
for(objects = machine->objects; objects != NULL; objects = g_list_next(objects)) {
object = (dcom_object_t *)objects->data;
- g_warning(" Object(#%4u): OID:0x%" G_GINT64_MODIFIER "x private:%p", object->first_packet, object->oid, object->private_data);
+ /*g_warning(" Object(#%4u): OID:0x%" G_GINT64_MODIFIER "x private:%p", object->first_packet, object->oid, object->private_data);*/
for(interfaces = object->interfaces; interfaces != NULL; interfaces = g_list_next(interfaces)) {
interf = (dcom_interface_t *)interfaces->data;
- g_warning(" Interface(#%4u): iid:%s",
+ /*g_warning(" Interface(#%4u): iid:%s",
interf->first_packet, guids_resolve_guid_to_str(&interf->iid));
- g_warning(" ipid:%s", guids_resolve_guid_to_str(&interf->ipid));
+ g_warning(" ipid:%s", guids_resolve_guid_to_str(&interf->ipid));*/
}
}
}
diff --git a/epan/dissectors/packet-lbm.h b/epan/dissectors/packet-lbm.h
index 376595929a..ec0bef2c68 100644
--- a/epan/dissectors/packet-lbm.h
+++ b/epan/dissectors/packet-lbm.h
@@ -94,6 +94,8 @@
#endif
#include <stddef.h>
+#include <wsutil/inet_aton.h>
+
typedef guint8 lbm_uint8_t;
typedef guint16 lbm_uint16_t;
typedef guint32 lbm_uint32_t;
diff --git a/epan/dissectors/packet-lbmr.c b/epan/dissectors/packet-lbmr.c
index b8820fcc88..e42d0bb43e 100644
--- a/epan/dissectors/packet-lbmr.c
+++ b/epan/dissectors/packet-lbmr.c
@@ -23,12 +23,7 @@
*/
#include "config.h"
-#ifdef HAVE_ARPA_INET_H
- #include <arpa/inet.h>
-#endif
-#if HAVE_WINSOCK2_H
- #include <winsock2.h>
-#endif
+
#include <epan/packet.h>
#include <epan/address.h>
#include <epan/strutil.h>
@@ -38,9 +33,7 @@
#include <epan/expert.h>
#include <epan/uat.h>
#include <epan/to_str.h>
-#ifndef HAVE_INET_ATON
- #include <wsutil/inet_aton.h>
-#endif
+#include <wsutil/inet_aton.h>
#include <wsutil/pint.h>
#include "packet-lbm.h"
#include "packet-lbtru.h"
diff --git a/epan/dissectors/packet-lbtrm.c b/epan/dissectors/packet-lbtrm.c
index 9d4bf35fe3..805ad93b68 100644
--- a/epan/dissectors/packet-lbtrm.c
+++ b/epan/dissectors/packet-lbtrm.c
@@ -23,12 +23,7 @@
*/
#include "config.h"
-#ifdef HAVE_ARPA_INET_H
- #include <arpa/inet.h>
-#endif
-#if HAVE_WINSOCK2_H
- #include <winsock2.h>
-#endif
+
#include <epan/packet.h>
#include <epan/prefs.h>
#include <epan/expert.h>
@@ -36,9 +31,7 @@
#include <epan/tap.h>
#include <epan/conversation.h>
#include <epan/to_str.h>
-#ifndef HAVE_INET_ATON
- #include <wsutil/inet_aton.h>
-#endif
+#include <wsutil/inet_aton.h>
#include <wsutil/pint.h>
#include "packet-lbm.h"
#include "packet-lbtrm.h"