Skip to content

Commit

Permalink
Merge pull request zeromq#160 from sigiesec/fix-monitoring
Browse files Browse the repository at this point in the history
Problem: inconsistent symbol naming for ZMQ_VERSION>=4.2.3
  • Loading branch information
bluca authored Oct 9, 2017
2 parents 059e4b4 + 4a08086 commit 98fa1f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zmq.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -856,13 +856,13 @@ namespace zmq
#ifdef ZMQ_BUILD_DRAFT_API
#if ZMQ_VERSION >= ZMQ_MAKE_VERSION(4, 2, 3)
case ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL:
on_event_handshake_failed(*event, address.c_str());
on_event_handshake_failed_no_detail(*event, address.c_str());
break;
case ZMQ_EVENT_HANDSHAKE_FAILED_PROTOCOL:
on_event_handshake_failed(*event, address.c_str());
on_event_handshake_failed_protocol(*event, address.c_str());
break;
case ZMQ_EVENT_HANDSHAKE_FAILED_AUTH:
on_event_handshake_failed(*event, address.c_str());
on_event_handshake_failed_auth(*event, address.c_str());
break;
case ZMQ_EVENT_HANDSHAKE_SUCCEEDED:
on_event_handshake_succeeded(*event, address.c_str());
Expand Down

0 comments on commit 98fa1f4

Please sign in to comment.