aboutgitcodebugslistschat
path: root/passt.c
diff options
context:
space:
mode:
Diffstat (limited to 'passt.c')
-rw-r--r--passt.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/passt.c b/passt.c
index 98576a6..6bc040a 100644
--- a/passt.c
+++ b/passt.c
@@ -562,7 +562,12 @@ listen:
listen(fd_unix, 1);
fprintf(stderr,
"You can now start qrap:\n\t"
- "./qrap 5 kvm ... -net socket,fd=5 -net nic,model=virtio\n\n");
+ "./qrap 5 kvm ... -net socket,fd=5 -net nic,model=virtio\n"
+ "or directly qemu, patched with:\n\t"
+ "qemu/0001-net-Allow-also-UNIX-domain-sockets-to-be-used-as-net.patch\n"
+ "as follows:\n\t"
+ "kvm ... -net socket,connect="
+ UNIX_SOCK_PATH " -net nic,model=virtio\n\n");
c.fd_unix = accept(fd_unix, NULL, NULL);
ev.events = EPOLLIN | EPOLLET | EPOLLRDHUP | EPOLLERR | EPOLLHUP;