From b60674eb5004789b7a0fb2fa88cd97b58baaf41d Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Wed, 16 Nov 2011 09:09:23 +0000 Subject: [PATCH] --- src/transport/plugin_transport_http.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/transport/plugin_transport_http.c b/src/transport/plugin_transport_http.c index 69d964c43..a6c9190bd 100644 --- a/src/transport/plugin_transport_http.c +++ b/src/transport/plugin_transport_http.c @@ -563,17 +563,16 @@ http_plugin_send (void *cls, const struct GNUNET_PeerIdentity *target, GNUNET_i2s (target)); #endif int res = GNUNET_OK; - if (addrlen == sizeof (struct IPv4HttpAddress)) { struct IPv4HttpAddress * a4 = (struct IPv4HttpAddress *) addr; - if (ntohs(a4->u4_port) == 0) + if ((ntohs(a4->u4_port) == 0) || (plugin->ipv4 == GNUNET_NO)) res = GNUNET_SYSERR; } if (addrlen == sizeof (struct IPv6HttpAddress)) { struct IPv6HttpAddress * a6 = (struct IPv6HttpAddress *) addr; - if (ntohs(a6->u6_port) == 0) + if ((ntohs(a6->u6_port) == 0) || (plugin->ipv6 == GNUNET_NO)) res = GNUNET_SYSERR; } if (res == GNUNET_OK) -- 2.25.1