summaryrefslogtreecommitdiff
path: root/pjsip/include/pjsip/sip_endpoint.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-02-27 23:54:58 +0000
committerBenny Prijono <bennylp@teluu.com>2006-02-27 23:54:58 +0000
commite0da93da2f05d4ce4e3ed68618f74c94a4d0defc (patch)
tree46b6dc40a909526360d951c9db7c66b7b69fd9ef /pjsip/include/pjsip/sip_endpoint.h
parentbb660e1ca59d104bcc981c57f5662bf5e5479678 (diff)
Changed pjsip_endpt_handle_events() to return pj_status_t instead of void
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@248 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/include/pjsip/sip_endpoint.h')
-rw-r--r--pjsip/include/pjsip/sip_endpoint.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/pjsip/include/pjsip/sip_endpoint.h b/pjsip/include/pjsip/sip_endpoint.h
index 8b344db8..c9163ed8 100644
--- a/pjsip/include/pjsip/sip_endpoint.h
+++ b/pjsip/include/pjsip/sip_endpoint.h
@@ -108,9 +108,11 @@ PJ_DECL(const pj_str_t*) pjsip_endpt_name(const pjsip_endpoint *endpt);
* @param endpt The endpoint.
* @param max_timeout Maximum time to wait for events, or NULL to wait forever
* until event is received.
+ *
+ * @return PJ_SUCCESS on success.
*/
-PJ_DECL(void) pjsip_endpt_handle_events( pjsip_endpoint *endpt,
- const pj_time_val *max_timeout);
+PJ_DECL(pj_status_t) pjsip_endpt_handle_events( pjsip_endpoint *endpt,
+ const pj_time_val *max_timeout);
/**