Re: [PATCH] Add a feature for mapping a host unix socket to a guest tcp socket
On 8/2/25 13:41, Viktor Kurilko wrote: +#if !defined(WIN32) && SLIRP_CHECK_VERSION(4, 7, 0) +if (buf[0] == '/') { +if (is_udp) { +fail_reason = "Mapping unix to udp is not supported"; +goto fail_syntax; +} +if (strlen(buf) > sizeof(host_addr.un.
[PATCH] Add a feature for mapping a host unix socket to a guest tcp socket
This patch adds the ability to map a host unix socket to a guest tcp socket when using the slirp backend. This feature was added in libslirp version 4.7.0. Signed-off-by: Viktor Kurilko --- net/slirp.c | 65 ++--- 1 file changed, 52 insertions(+),