[PATCH] Qperf support for ipv4 when ipv6 is disabled at protocol layer

sababu posted 1 patch 3 years, 11 months ago
src/qperf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] Qperf support for ipv4 when ipv6 is disabled at protocol layer
Posted by sababu 3 years, 11 months ago
From: sababu <sababu@redhat.com>

    With qperf version 0.4.9 we defined AI_FAMILY as AF_UNSPEC, starting
    qperf 0.4.11 the same is changed to AF_INET6 which causes issues
    when ipv6 is disabled at protocol layer (as a kernel command line
    arguement). This patch reverses the behavior.

Signed-off-by: sababu <sangambabu1@gmail.com>
---
 src/qperf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/qperf.c b/src/qperf.c
index 89fe5b8..4de0cce 100644
--- a/src/qperf.c
+++ b/src/qperf.c
@@ -1418,7 +1418,7 @@ server_listen(void)
     AI *ai;
     AI hints ={
         .ai_flags    = AI_PASSIVE | AI_NUMERICSERV,
-	.ai_family   = AF_INET6,
+	.ai_family   = AF_UNSPEC,
         .ai_socktype = SOCK_STREAM
     };
     AI *ailist = getaddrinfo_port(0, ListenPort, &hints);
-- 
2.31.1