EPICS base 3.14/clang compilation, TCPAcceptor shutdown on OSX (BSD) fixed

This commit is contained in:
Matej Sekoranja
2015-12-16 11:46:58 +01:00
parent 76b414dac6
commit d7eafcb9c5
4 changed files with 131 additions and 4 deletions

View File

@@ -68,9 +68,10 @@ namespace epics {
}
// sockets are blocking by default
Transport::shared_pointer transport(new BlockingUDPTransport(_serverFlag, responseHandler,
BlockingUDPTransport::shared_pointer transport(new BlockingUDPTransport(_serverFlag, responseHandler,
socket, bindAddress, transportRevision));
return transport;
return Transport::shared_pointer(transport);
}
}