diff --git a/qemu-sockets.c b/qemu-sockets.c index 6e212fecf408ad25bd2cb6586f146b46d8e86fc0..0d0ce44246b98afe7f9ec76ee68823c73ffe2421 100644 --- a/qemu-sockets.c +++ b/qemu-sockets.c @@ -453,6 +453,18 @@ int unix_connect(const char *path) #else +int unix_listen_opts(QemuOpts *opts) +{ + fprintf(stderr, "unix sockets are not available on windows\n"); + return -1; +} + +int unix_connect_opts(QemuOpts *opts) +{ + fprintf(stderr, "unix sockets are not available on windows\n"); + return -1; +} + int unix_listen(const char *path, char *ostr, int olen) { fprintf(stderr, "unix sockets are not available on windows\n");