Repository: qpid-proton Updated Branches: refs/heads/master 4185261b7 -> 66d8f0e9c
PROTON-1344: Added missed PN_LISTENER_ACCEPT event from pn_event_type_name() Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/66d8f0e9 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/66d8f0e9 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/66d8f0e9 Branch: refs/heads/master Commit: 66d8f0e9c493419f27ff63f47dd7a707efc28e80 Parents: 4185261 Author: Andrew Stitcher <[email protected]> Authored: Mon Jan 23 12:30:53 2017 -0500 Committer: Andrew Stitcher <[email protected]> Committed: Fri Feb 3 15:43:06 2017 -0500 ---------------------------------------------------------------------- proton-c/src/core/event.c | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/66d8f0e9/proton-c/src/core/event.c ---------------------------------------------------------------------- diff --git a/proton-c/src/core/event.c b/proton-c/src/core/event.c index 54fdee7..41ff6d1 100644 --- a/proton-c/src/core/event.c +++ b/proton-c/src/core/event.c @@ -385,6 +385,8 @@ const char *pn_event_type_name(pn_event_type_t type) return "PN_SELECTABLE_FINAL"; case PN_CONNECTION_WAKE: return "PN_CONNECTION_WAKE"; + case PN_LISTENER_ACCEPT: + return "PN_LISTENER_ACCEPT"; case PN_LISTENER_CLOSE: return "PN_LISTENER_CLOSE"; case PN_PROACTOR_INTERRUPT: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
