diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-09-21 12:36:48 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2011-12-22 11:53:58 +0100 |
commit | 128aa58947637b0989330c2e6a22a824d39e2193 (patch) | |
tree | a0e66b9499084abf822721d095094a904b3b4b83 /qemu_socket.h | |
parent | 3777b09fd75ba746cf65d0ba30d73a5dd7a02d65 (diff) | |
download | qemu-128aa58947637b0989330c2e6a22a824d39e2193.tar.gz qemu-128aa58947637b0989330c2e6a22a824d39e2193.tar.bz2 qemu-128aa58947637b0989330c2e6a22a824d39e2193.zip |
move corking functions to osdep.c
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qemu_socket.h')
-rw-r--r-- | qemu_socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu_socket.h b/qemu_socket.h index 9e32fac651..fe4cf6ca61 100644 --- a/qemu_socket.h +++ b/qemu_socket.h @@ -35,6 +35,7 @@ int inet_aton(const char *cp, struct in_addr *ia); /* misc helpers */ int qemu_socket(int domain, int type, int protocol); int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen); +int socket_set_cork(int fd, int v); void socket_set_block(int fd); void socket_set_nonblock(int fd); int send_all(int fd, const void *buf, int len1); |