cliffjansen commented on code in PR #402: URL: https://github.com/apache/qpid-proton/pull/402#discussion_r1320281476
########## c/src/proactor/raw_connection.c: ########## @@ -721,6 +723,14 @@ pn_event_t *pni_raw_event_next(pn_raw_connection_t *conn) { } while (true); } +pn_event_t *pni_raw_event_next(pn_raw_connection_t *conn) { + return pni_get_next_raw_event(conn, false); +} + +pn_event_t *pni_raw_event_peek(pn_raw_connection_t *conn) { + return pni_get_next_raw_event(conn, true); +} + Review Comment: done with has_events(). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org