Ignore:
Timestamp:
Oct 26, 2009 11:21:37 AM (15 years ago)
Author:
bennylp
Message:

Implement ticket #982: Support for SIP Message Summary/Message? Waiting Indication (MWI, RFC 3842)

  • PJSIP-SIMPLE:
    • implement MWI
  • PJSUA-LIB:
    • added "mwi_enabled" flag in account config
    • added "on_mwi_info" callback
  • pjsua app:
    • added "--mwi" option to enable MWI on account
    • added simple callback to log the NOTIFY message
  • other:
    • added SIPp scenario files to simulate UAS side
  • build:
    • added MWI support on VS6, VS2005, MMP, and Makefile
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c

    r2966 r2968  
    821821    PJ_ASSERT_RETURN(status == PJ_SUCCESS, status); 
    822822 
     823    /* Initialize MWI support */ 
     824    status = pjsip_mwi_init_module(pjsua_var.endpt, pjsip_evsub_instance()); 
     825 
    823826    /* Init PUBLISH module */ 
    824827    pjsip_publishc_init_module(pjsua_var.endpt); 
Note: See TracChangeset for help on using the changeset viewer.