diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2013-03-27 10:10:43 +0100 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2013-04-02 11:47:37 -0400 |
commit | 1023104a7a9ac7aba0ac6f77760a946910b42edb (patch) | |
tree | 688d5d93bf827712ff74bfcb5731f881a988a539 | |
parent | 513737b82a7fd9fcf49b82872ff75134746041e7 (diff) | |
download | slirp-1023104a7a9ac7aba0ac6f77760a946910b42edb.zip slirp-1023104a7a9ac7aba0ac6f77760a946910b42edb.tar.gz slirp-1023104a7a9ac7aba0ac6f77760a946910b42edb.tar.bz2 |
oslib-posix: rename socket_set_nonblock() to qemu_set_nonblock()
The fcntl(fd, F_SETFL, O_NONBLOCK) flag is not specific to sockets.
Rename to qemu_set_nonblock() just like qemu_set_cloexec().
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
-rw-r--r-- | misc.c | 2 | ||||
-rw-r--r-- | tcp_subr.c | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -210,7 +210,7 @@ int fork_exec(struct socket *so, const char *ex, int do_pty) qemu_setsockopt(so->s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int)); opt = 1; qemu_setsockopt(so->s, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(int)); - socket_set_nonblock(so->s); + qemu_set_nonblock(so->s); /* Append the telnet options now */ if (so->so_m != NULL && do_pty == 1) { @@ -334,7 +334,7 @@ int tcp_fconnect(struct socket *so) int opt, s = so->s; struct sockaddr_in addr; - socket_set_nonblock(s); + qemu_set_nonblock(s); opt = 1; qemu_setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)); opt = 1; @@ -424,7 +424,7 @@ void tcp_connect(struct socket *inso) tcp_close(sototcpcb(so)); /* This will sofree() as well */ return; } - socket_set_nonblock(s); + qemu_set_nonblock(s); opt = 1; qemu_setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int)); opt = 1; |