aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_if_details_dlg.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-01-02 01:52:47 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-01-02 01:52:47 +0000
commitbcf21a35d6f2e0415ece0c76141ea3781dda7611 (patch)
treed62b2ed60c76896533c82d30906456fba0662d10 /gtk/capture_if_details_dlg.c
parent6bb21fbafdf0574a3fef93e1839d994c4cfee18e (diff)
MSVC2006 defines sockaddr_storage, so we shouldn't define this on our own for MSVC2006
this might be depending on the Platform SDK and not on MSVC version - I don't really know svn path=/trunk/; revision=20259
Diffstat (limited to 'gtk/capture_if_details_dlg.c')
-rw-r--r--gtk/capture_if_details_dlg.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk/capture_if_details_dlg.c b/gtk/capture_if_details_dlg.c
index efbdefc622..28af9e19b3 100644
--- a/gtk/capture_if_details_dlg.c
+++ b/gtk/capture_if_details_dlg.c
@@ -71,6 +71,12 @@ typedef unsigned short eth_sa_family_t;
#define ETH_SS_PAD2SIZE (ETH_SS_MAXSIZE - (sizeof (eth_sa_family_t) + \
ETH_SS_PAD1SIZE + ETH_SS_ALIGNSIZE))
+/* sockaddr_storage problem with different MSVC versions
+ * - MSVC 6 (1200) doesn't define this
+ * - MSVC 7 (1300) unknown
+ * - MSVC 8 (1400) does */
+/* we might need to tweak this #if, see version_info for _MSC_VER values */
+#if _MSC_VER < 1400
struct sockaddr_storage {
eth_sa_family_t __ss_family; /* address family */
/* Following fields are implementation specific */
@@ -86,6 +92,7 @@ struct sockaddr_storage {
/* __ss_pad1, __ss_align fields is 112 */
};
/* ... copied from RFC2553 */
+#endif /* _MSC_VER */
#endif