Re: [PATCH v8 06/21] libqtest: make bufwrite rely on the TransportOps

2020-02-05 Thread Darren Kenny
On Wed, Jan 29, 2020 at 05:34:16AM +, Bulekov, Alexander wrote: When using qtest "in-process" communication, qtest_sendf directly calls a function in the server (qtest.c). Previously, bufwrite used socket_send, which bypasses the TransportOps enabling the call into qtest.c. This change replac

[PATCH v8 06/21] libqtest: make bufwrite rely on the TransportOps

2020-01-28 Thread Bulekov, Alexander
When using qtest "in-process" communication, qtest_sendf directly calls a function in the server (qtest.c). Previously, bufwrite used socket_send, which bypasses the TransportOps enabling the call into qtest.c. This change replaces the socket_send calls with ops->send, maintaining the benefits of t