Ignore:
Timestamp:
Oct 26, 2009 11:21:37 AM (14 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/pjsip/sip_msg.c

    r2961 r2968  
    601601/////////////////////////////////////////////////////////////////////////////// 
    602602/* 
     603 * Media type 
     604 */ 
     605PJ_DEF(void) pjsip_media_type_cp( pj_pool_t *pool, 
     606                                  pjsip_media_type *dst, 
     607                                  const pjsip_media_type *src) 
     608{ 
     609    PJ_ASSERT_ON_FAIL(pool && dst && src, return); 
     610    pj_strdup(pool, &dst->type,    &src->type); 
     611    pj_strdup(pool, &dst->subtype, &src->subtype); 
     612    pj_strdup(pool, &dst->param,   &src->param); 
     613} 
     614 
     615/////////////////////////////////////////////////////////////////////////////// 
     616/* 
    603617 * Generic pjsip_hdr_names/hvalue header. 
    604618 */ 
Note: See TracChangeset for help on using the changeset viewer.