slirp: remove slirp_ prefix for socket wrappers
commitfdbfba8cbf04b587f9bab11b8e6a87afc38556e5
authorMarc-André Lureau <marcandre.lureau@redhat.com>
Tue, 12 Feb 2019 16:09:52 +0000 (12 17:09 +0100)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Tue, 12 Feb 2019 19:47:42 +0000 (12 20:47 +0100)
tree37a867a670f31469c4fd0388601202aabca3f763
parent0b5e750bea635b167eb03d86c3d9a09bbd43bc06
slirp: remove slirp_ prefix for socket wrappers

QEMU wraps the socket functions in os-win32.h, but in commit
a9d8b3ec4385793815d71217857304, the header inclusion was dropped,
breaking libslirp on Windows.

There are already a few socket functions that are wrapped in libslirp,
with "slirp_" prefix, but many of them are missing, and we are going
to wrap the missing functions in a second patch.

Using "slirp_" prefix avoids the conflict with socket function #define
wrappers in QEMU os-win32.h, but they are quite intrusive. In the end,
the functions should behave the same as original one, but with errno
being set. To avoid the churn, and potential confusion, remove the
"slirp_" prefix. A series of #undef is necessary until libslirp is
made standalone to prevent the #define conflict with QEMU.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20190212160953.29051-2-marcandre.lureau@redhat.com>
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
slirp/ip_icmp.c
slirp/misc.c
slirp/slirp.c
slirp/socket.c
slirp/tcp_subr.c
slirp/udp.c
slirp/util.h