Skip to content

Commit ca9a736

Browse files
committed
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 <noreply@github.com>
1 parent a135e87 commit ca9a736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzz/fuzz_server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ void client(Fuzzer *fuzzer) {
124124
amqp_socket_t *socket = NULL;
125125
amqp_connection_state_t conn;
126126

127-
hostname = "localhost";
127+
hostname = "127.0.0.1";
128128

129129
conn = amqp_new_connection();
130130

0 commit comments

Comments
 (0)