socket_wrapper.c: let swrap_vioctl() handle SIOCOUTQ/TIOCOUTQ/FIONWRITE explicitly
authorStefan Metzmacher <metze@samba.org>
Mon, 8 Jun 2020 12:21:25 +0000 (14:21 +0200)
committerStefan Metzmacher <metze@samba.org>
Mon, 22 Jun 2020 14:45:48 +0000 (16:45 +0200)
commitb94af548f42e561207db7cacbe09c9e3286de2d3
tree8f040dafa538d5d2a02fc9c118d4c85ed5c3d356
parent64cee569a77e9d9d92e0dc0d2793536c9fb4a45e
socket_wrapper.c: let swrap_vioctl() handle SIOCOUTQ/TIOCOUTQ/FIONWRITE explicitly

They are used to ask for the number of unacked bytes in the send queue,
with AF_UNIX sockets get strange result, on linux 5.3 I get more bytes
reported than I sent into the socket. All bytes reach the destination
directly, so we can just always report 0 unacked bytes.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=11897

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
(cherry picked from commit f317ebcdcdd626ed9e06de2eb60031306994c803)
src/socket_wrapper.c