summaryrefslogtreecommitdiff
path: root/src/zmq.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-04-11 16:36:27 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-04-11 16:36:27 +0200
commitfba28c7c0cddd7c54fe45b38fc38ac6fe5a48438 (patch)
treeed03da45d220b24f384f2a2d9b33882e322317b8 /src/zmq.cpp
parentdff79d778db46bebe1e3b0cbd28b328972b9adb8 (diff)
issue 1 - Change zmq_term semantics
Diffstat (limited to 'src/zmq.cpp')
-rw-r--r--src/zmq.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zmq.cpp b/src/zmq.cpp
index b8d18f7..0681cbb 100644
--- a/src/zmq.cpp
+++ b/src/zmq.cpp
@@ -88,6 +88,8 @@ const char *zmq_strerror (int errnum_)
return "Operation cannot be accomplished in current state";
case ENOCOMPATPROTO:
return "The protocol is not compatible with the socket type";
+ case ETERM:
+ return "Context was terminated";
default:
#if defined _MSC_VER
#pragma warning (push)