Merge pull request #805 from bobsummerwill/develop

Fixed up broken ifdefs in new sockets code
This commit is contained in:
Bob Summerwill 2016-08-02 23:14:21 -07:00 committed by GitHub
commit 0e9790f2a9

View File

@ -34,6 +34,7 @@ using namespace dev;
IPCSocket::IPCSocket(string const& _path): m_path(_path)
{
#if defined(_WIN32)
m_socket = CreateFile(
m_path.c_str(), // pipe name
GENERIC_READ | // read and write access
@ -47,7 +48,6 @@ IPCSocket::IPCSocket(string const& _path): m_path(_path)
if (m_socket == INVALID_HANDLE_VALUE)
BOOST_FAIL("Error creating IPC socket object");
#if defined(_WIN32)
#else
if (_path.length() >= sizeof(sockaddr_un::sun_path))
BOOST_FAIL("Error opening IPC: socket path is too long!");