Skip to content

Commit

Permalink
conn_sock: make dest fd non blocking
Browse files Browse the repository at this point in the history
we already have code in place to handle partial writes, just make sure
the fd is not blocking so it doesn't hang on writes.

Closes: #204

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
  • Loading branch information
giuseppe committed Dec 18, 2020
1 parent c704d3a commit 6287bd8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/conn_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ static gboolean attach_cb(int fd, G_GNUC_UNUSED GIOCondition condition, gpointer
pexit("Failed to allocate memory");
}
init_remote_sock(remote_sock, srcsock);
g_unix_set_fd_nonblocking(new_fd, TRUE, NULL);
remote_sock->fd = new_fd;
g_unix_fd_add(remote_sock->fd, G_IO_IN | G_IO_HUP | G_IO_ERR, remote_sock_cb, remote_sock);
g_ptr_array_add(remote_sock->dest->readers, remote_sock);
Expand Down Expand Up @@ -425,6 +426,7 @@ static void init_remote_sock(struct remote_sock_s *sock, struct remote_sock_s *s
sock->readable = src->readable;
sock->writable = src->writable;
sock->dest = src->dest;
g_unix_set_fd_nonblocking(*sock->dest->fd, TRUE, NULL);
sock->sock_type = src->sock_type;
}
}

0 comments on commit 6287bd8

Please sign in to comment.