Ignore:
Timestamp:
Feb 21, 2006 11:47:00 PM (18 years ago)
Author:
bennylp
Message:

Implemented major feature: call hold and transfer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_msg.h

    r197 r212  
    585585 
    586586/** 
     587 * General purpose function to clone textual data in a SIP body. Attach this 
     588 * function as "clone_data" member of the SIP body only if the data type 
     589 * is a text (i.e. C string, not pj_str_t), and the length indicates the 
     590 * length of the text. 
     591 * 
     592 *  @param pool         Pool used to clone the data. 
     593 *  @param data         Textual data. 
     594 *  @param len          The length of the string. 
     595 * 
     596 *  @return             New text duplicated from the original text. 
     597 */ 
     598PJ_DECL(void*) pjsip_clone_text_data( pj_pool_t *pool, const void *data, 
     599                                      unsigned len); 
     600 
     601 
     602/** 
    587603 * Clone the message body in src_body to the dst_body. This will duplicate 
    588604 * the contents of the message body using the \a clone_data member of the 
Note: See TracChangeset for help on using the changeset viewer.