mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
Call qemu_socketpair() instead of socketpair() when possible
As qemu_socketpair() was introduced in commit 3c63b4e9
("oslib-posix: Introduce qemu_socketpair()"), it's time
to replace the other existing socketpair() calls with
qemu_socketpair() if possible
Signed-off-by: Guoyi Tu <tugy@chinatelecom.cn>
Acked-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <cd28916a-f1f3-b54e-6ade-8a3647c3a9a5@chinatelecom.cn>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
a8d6abe129
commit
0038e9a226
5 changed files with 8 additions and 7 deletions
|
@ -121,7 +121,7 @@ static void test_io_channel_tls(const void *opaque)
|
|||
GMainContext *mainloop;
|
||||
|
||||
/* We'll use this for our fake client-server connection */
|
||||
g_assert(socketpair(AF_UNIX, SOCK_STREAM, 0, channel) == 0);
|
||||
g_assert(qemu_socketpair(AF_UNIX, SOCK_STREAM, 0, channel) == 0);
|
||||
|
||||
#define CLIENT_CERT_DIR "tests/test-io-channel-tls-client/"
|
||||
#define SERVER_CERT_DIR "tests/test-io-channel-tls-server/"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue