Ignore:
Timestamp:
Apr 2, 2007 11:44:47 AM (17 years ago)
Author:
bennylp
Message:

Ticket #205: merged proxy functionalities from stable to trunk

File:
1 edited

Legend:

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

    r974 r1127  
    711711PJ_DECL(pjsip_msg*)  pjsip_msg_create( pj_pool_t *pool, pjsip_msg_type_e type); 
    712712 
     713 
     714/** 
     715 * Perform a deep clone of a SIP message. 
     716 * 
     717 * @param pool      The pool for creating the new message. 
     718 * @param msg       The message to be duplicated. 
     719 * 
     720 * @return          New message, which is duplicated from the original  
     721 *                  message. 
     722 */ 
     723PJ_DECL(pjsip_msg*) pjsip_msg_clone( pj_pool_t *pool, const pjsip_msg *msg); 
     724 
     725 
    713726/**  
    714727 * Find a header in the message by the header type. 
Note: See TracChangeset for help on using the changeset viewer.