Commit a507d16e authored by unknown's avatar unknown

Win32 build fixed

parent 2bb57ac5
...@@ -21,6 +21,8 @@ ...@@ -21,6 +21,8 @@
#include <string> #include <string>
#include "../bindings/c/zmq.h"
#include "tcp_connecter.hpp" #include "tcp_connecter.hpp"
#include "platform.hpp" #include "platform.hpp"
#include "ip.hpp" #include "ip.hpp"
......
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
#include <string.h> #include <string.h>
#include "../bindings/c/zmq.h"
#include "tcp_listener.hpp" #include "tcp_listener.hpp"
#include "platform.hpp" #include "platform.hpp"
#include "ip.hpp" #include "ip.hpp"
...@@ -39,7 +41,7 @@ zmq::tcp_listener_t::~tcp_listener_t () ...@@ -39,7 +41,7 @@ zmq::tcp_listener_t::~tcp_listener_t ()
close (); close ();
} }
int zmq::tcp_listener_t::set_address (cosnt char *protocol_, const char *addr_) int zmq::tcp_listener_t::set_address (const char *protocol_, const char *addr_)
{ {
// IPC protocol is not supported on Windows platform. // IPC protocol is not supported on Windows platform.
if (strcmp (protocol_, "tcp") != 0 ) { if (strcmp (protocol_, "tcp") != 0 ) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment