Skip to content

Instantly share code, notes, and snippets.

@barkady
Created May 26, 2014 11:38
Show Gist options
  • Save barkady/febd72bf0f0637346dae to your computer and use it in GitHub Desktop.
Save barkady/febd72bf0f0637346dae to your computer and use it in GitHub Desktop.
Zmq firbids Windows
// IPC transport is not available on Windows and OpenVMS.
#if defined ZMQ_HAVE_WINDOWS || defined ZMQ_HAVE_OPENVMS
if (protocol_ == "ipc") {
// Unknown protocol.
errno = EPROTONOSUPPORT;
return -1;
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment