pjsip实现的软电话连接IPX3500服务器,通话1分钟后自动挂断的解决方法

pjsip实现的软电话连接IPX3500服务器时,通话1分钟后自动挂断的解决方法

\pjproject-x.x.x\pjsip\src\pjsua-lib\pjsua_core.c

/* The module instance. */
static pjsip_module pjsua_options_handler = 
{
    NULL, NULL,				/* prev, next.		*/
    { "mod-pjsua-options", 17 },	/* Name.		*/
    -1,					/* Id			*/
    // PJSIP_MOD_PRIORITY_APPLICATION,	/* Priority	        */
	PJSIP_MOD_PRIORITY_TRANSPORT_LAYER-1, /* fixed 1 min break */
    NULL,				/* load()		*/
    NULL,				/* start()		*/
    NULL,				/* stop()		*/
    NULL,				/* unload()		*/
    &options_on_rx_request,		/* on_rx_request()	*/
    NULL,				/* on_rx_response()	*/
    NULL,				/* on_tx_request.	*/
    NULL,				/* on_tx_response()	*/
    NULL,				/* on_tsx_state()	*/

};


你可能感兴趣的:(pjsip实现的软电话连接IPX3500服务器,通话1分钟后自动挂断的解决方法)