diff options
Diffstat (limited to 'src/vtcp_connecter.cpp')
-rw-r--r-- | src/vtcp_connecter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vtcp_connecter.cpp b/src/vtcp_connecter.cpp index f281b23..61e7e84 100644 --- a/src/vtcp_connecter.cpp +++ b/src/vtcp_connecter.cpp @@ -25,7 +25,7 @@ #include <new> #include <string> -#include "tcp_engine.hpp" +#include "stream_engine.hpp" #include "io_thread.hpp" #include "platform.hpp" #include "random.hpp" @@ -141,7 +141,7 @@ void zmq::vtcp_connecter_t::out_event () } // Create the engine object for this connection. - tcp_engine_t *engine = new (std::nothrow) tcp_engine_t (fd, options); + stream_engine_t *engine = new (std::nothrow) stream_engine_t (fd, options); alloc_assert (engine); // Attach the engine to the corresponding session object. |