From c205201320f80d9e25e554566da5b7f11203f871 Mon Sep 17 00:00:00 2001 From: Nanang Izzuddin Date: Mon, 2 Mar 2009 15:48:45 +0000 Subject: Ticket #732: - Added new Symbian specific API in PJLIB, pj_symbianos_set_connection_status(), to let PJLIB knows the connection status. - Added connection status checks before Symbian socket operations. - Added loop limiter in Symbian busy_sleep() to avoid the possibility of infinite loop. - Added sample of connection monitor in Symbian sample application (ua.cpp). git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2481 74dad513-b988-da41-8d7b-12977e46ad98 --- pjlib/include/pj/os.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'pjlib/include/pj') diff --git a/pjlib/include/pj/os.h b/pjlib/include/pj/os.h index 0bd18638..4a5a77f8 100644 --- a/pjlib/include/pj/os.h +++ b/pjlib/include/pj/os.h @@ -394,6 +394,18 @@ typedef struct pj_symbianos_params */ PJ_DECL(pj_status_t) pj_symbianos_set_params(pj_symbianos_params *prm); +/** + * Notify PJLIB that the access point connection has been down or unusable + * and PJLIB should not try to access the Symbian socket API (especially ones + * that send packets). Sending packet when RConnection is reconnected to + * different access point may cause the WaitForRequest() for the function to + * block indefinitely. + * + * @param up If set to PJ_FALSE it will cause PJLIB to not try + * to access socket API, and error will be returned + * immediately instead. + */ +PJ_DECL(void) pj_symbianos_set_connection_status(pj_bool_t up); /** * @} -- cgit v1.2.3