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/include/pjsip/sip_msg.h

    r2394 r2968  
    512512} pjsip_media_type; 
    513513 
     514 
     515/** 
     516 * Copy SIP media type to another. 
     517 * 
     518 * @param pool      Pool to duplicate strings. 
     519 * @param dst       Destination structure. 
     520 * @param src       Source structure. 
     521 */ 
     522PJ_DECL(void) pjsip_media_type_cp(pj_pool_t *pool, 
     523                                  pjsip_media_type *dst, 
     524                                  const pjsip_media_type *src); 
     525 
    514526/** 
    515527 * @} 
Note: See TracChangeset for help on using the changeset viewer.