aboutsummaryrefslogtreecommitdiffstats
path: root/capture_wpcap_packet.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-19 20:59:50 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-19 20:59:50 +0000
commit692ae2c6cb419bded1135487f9cd19208e4e8fdf (patch)
treee332d668f4c184357984641ea66a023f26ee0bd6 /capture_wpcap_packet.c
parentcfe5ccaccabe9ac4a82f6a1b49dd3f703fb1e088 (diff)
fix #340: define the missing sockaddr_storage struct to be able to use Packet32.h even with WinPcap 3.1 and without the platform SDK
svn path=/trunk/; revision=15878
Diffstat (limited to 'capture_wpcap_packet.c')
-rw-r--r--capture_wpcap_packet.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/capture_wpcap_packet.c b/capture_wpcap_packet.c
index 7a91c34f48..419109906b 100644
--- a/capture_wpcap_packet.c
+++ b/capture_wpcap_packet.c
@@ -34,11 +34,50 @@
#include <glib.h>
#include <gmodule.h>
+#include <wtap.h>
+#include <pcap.h>
+
/* XXX - yes, I know, I should move cppmagic.h to a generic location. */
#include "tools/lemon/cppmagic.h"
#include <epan/value_string.h>
+
+
+#ifndef HAVE_SOCKADDR_STORAGE
+/* packet32.h requires sockaddr_storage (usually defined in Platform SDK)
+ * copied from RFC2553 (and slightly modified because of datatypes) ... */
+/*
+ * Desired design of maximum size and alignment
+ */
+#define ETH_SS_MAXSIZE 128 /* Implementation specific max size */
+#define ETH_SS_ALIGNSIZE (sizeof (gint64 /*int64_t*/))
+ /* Implementation specific desired alignment */
+/*
+ * Definitions used for sockaddr_storage structure paddings design.
+ */
+#define ETH_SS_PAD1SIZE (ETH_SS_ALIGNSIZE - sizeof (sa_family_t))
+#define ETH_SS_PAD2SIZE (ETH_SS_MAXSIZE - (sizeof (sa_family_t) + \
+ ETH_SS_PAD1SIZE + ETH_SS_ALIGNSIZE))
+
+struct sockaddr_storage {
+ sa_family_t __ss_family; /* address family */
+ /* Following fields are implementation specific */
+ char __ss_pad1[ETH_SS_PAD1SIZE];
+ /* 6 byte pad, this is to make implementation
+ /* specific pad up to alignment field that */
+ /* follows explicit in the data structure */
+ gint64 /*int64_t*/ __ss_align; /* field to force desired structure */
+ /* storage alignment */
+ char __ss_pad2[ETH_SS_PAD2SIZE];
+ /* 112 byte pad to achieve desired size, */
+ /* _SS_MAXSIZE value minus size of ss_family */
+ /* __ss_pad1, __ss_align fields is 112 */
+};
+/* ... copied from RFC2553 */
+#endif
+
+
#include <Packet32.h>
#include <windows.h>
#include <windowsx.h>