Commit 12e92434 authored by Rusty Russell's avatar Rusty Russell

ccan/io: fix io_connect.

getsockopt(fd, SOL_SOCKET, SO_ERROR, &err, &len) gives err == ECONNREFUSED
when connection is refused.  Handle this (and other error cases).

And we need F_SETFL not F_SETFD to restore blocking on the socket!
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 79ac0049
......@@ -385,10 +385,13 @@ static int do_connect(int fd, struct io_plan *plan)
if (err == 0) {
/* Restore blocking if it was initially. */
fcntl(fd, F_SETFD, plan->u1.s);
fcntl(fd, F_SETFL, plan->u1.s);
return 1;
}
return 0;
} else if (err == EINPROGRESS)
return 0;
errno = err;
return -1;
}
struct io_plan io_connect_(int fd, const struct addrinfo *addr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment