diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/socket_base.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/socket_base.cpp b/src/socket_base.cpp index f1e7fca..931203b 100644 --- a/src/socket_base.cpp +++ b/src/socket_base.cpp @@ -503,6 +503,7 @@ int xs::socket_base_t::connect (const char *addr_) } } +#if !defined XS_HAVE_WINDOWS && !defined XS_HAVE_OPENVMS if (protocol == "ipc") { ipc_connecter_t connecter (thread, NULL, options, false); int rc = connecter.set_address (address.c_str()); @@ -510,6 +511,7 @@ int xs::socket_base_t::connect (const char *addr_) return -1; } } +#endif #ifdef XS_HAVE_OPENPGM if (protocol == "pgm" || protocol == "epgm") { |