From ca9a736ead11d8d9ffdef59f2b374a3a63e2ef43 Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Wed, 3 May 2023 01:28:44 +0000 Subject: fuzz: connect to 127.0.0.1 instead of localhost We're observing ENETUNREACH, the thought is that something about name lookup is returning something that we cannot connect to, which makes connect fail eith ENETUNREACH. Signed-off-by: GitHub --- fuzz/fuzz_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/fuzz_server.c b/fuzz/fuzz_server.c index de500ed..c21426f 100644 --- a/fuzz/fuzz_server.c +++ b/fuzz/fuzz_server.c @@ -124,7 +124,7 @@ void client(Fuzzer *fuzzer) { amqp_socket_t *socket = NULL; amqp_connection_state_t conn; - hostname = "localhost"; + hostname = "127.0.0.1"; conn = amqp_new_connection(); -- cgit v1.2.1