From b508aac64a1c189367a34e79906a7b2553d0ad15 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Tue, 7 Feb 2017 13:34:00 +0000 Subject: Use only send/recv in IPC --- test/RPCSession.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'test/RPCSession.cpp') diff --git a/test/RPCSession.cpp b/test/RPCSession.cpp index 968d77b1..791d2cfe 100644 --- a/test/RPCSession.cpp +++ b/test/RPCSession.cpp @@ -73,10 +73,6 @@ IPCSocket::IPCSocket(string const& _path): m_path(_path) if (connect(m_socket, reinterpret_cast(&saun), sizeof(struct sockaddr_un)) < 0) BOOST_FAIL("Error connecting to IPC socket: " << _path); - - m_fp = fdopen(m_socket, "r"); - if (!m_fp) - BOOST_FAIL("Error opening IPC socket: " << _path); #endif } @@ -113,11 +109,12 @@ string IPCSocket::sendRequest(string const& _req) return returnStr; #else - send(m_socket, _req.c_str(), _req.length(), 0); + if (send(m_socket, _req.c_str(), _req.length(), 0) != (ssize_t)_req.length()) + BOOST_FAIL("Writing on IPC failed"); char c; string response; - while ((c = fgetc(m_fp)) != EOF) + while (recv(m_socket, &c, 1, 0) == 1) { if (c != '\n') response += c; -- cgit