Re: [PATCH v4] net/slirp: libslirp 4.9.0 compatibility

2025-01-30 Thread Michael Tokarev
30.01.2025 16:06, Thomas Huth wrote: I can pick this up for my upcoming pull request to fix the CI (unless Samuel plans to do a pull request, too) Or I can send an MR through trivial-patches (which is due today). It's okay either way. I'll just add some spaces after the comma in SLIRP_CHECK

Re: [PATCH v4] net/slirp: libslirp 4.9.0 compatibility

2025-01-30 Thread Thomas Huth
On 30/01/2025 13.32, Michael Tokarev wrote: Update the code in net/slirp.c to be compatible with libslirp 4.9.0, which deprecated slirp_pollfds_fill() and started using slirp_os_socket type for sockets (which is a 64-bit integer on win64) for all callbacks starting with version 6 of the interface

Re: [PATCH v4] net/slirp: libslirp 4.9.0 compatibility

2025-01-30 Thread Samuel Thibault
Michael Tokarev, le jeu. 30 janv. 2025 15:32:53 +0300, a ecrit: > Update the code in net/slirp.c to be compatible with > libslirp 4.9.0, which deprecated slirp_pollfds_fill() > and started using slirp_os_socket type for sockets > (which is a 64-bit integer on win64) for all callbacks > starting wit

[PATCH v4] net/slirp: libslirp 4.9.0 compatibility

2025-01-30 Thread Michael Tokarev
Update the code in net/slirp.c to be compatible with libslirp 4.9.0, which deprecated slirp_pollfds_fill() and started using slirp_os_socket type for sockets (which is a 64-bit integer on win64) for all callbacks starting with version 6 of the interface. Signed-off-by: Michael Tokarev --- v2: upd