Ignore:
Timestamp:
Jul 18, 2006 2:39:40 PM (18 years ago)
Author:
bennylp
Message:

Small improvements: (1) pjsua now responds to incoming OPTIONS request, which means that some modules (evsub, invite) need to register their capabilities to the endpoint, (2) added command in pjsua to send arbitrary request

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip-ua/sip_inv.h

    r515 r612  
    616616 
    617617 
     618/** 
     619 * This is a utility function to create SIP body for SDP content. 
     620 * 
     621 * @param pool          Pool to allocate memory. 
     622 * @param sdp           SDP session to be put in the SIP message body. 
     623 * @param p_body        Pointer to receive SIP message body containing 
     624 *                      the SDP session. 
     625 * 
     626 * @return              PJ_SUCCESS on success. 
     627 */ 
     628PJ_DECL(pj_status_t) pjsip_create_sdp_body(pj_pool_t *pool, 
     629                                           pjmedia_sdp_session *sdp, 
     630                                           pjsip_msg_body **p_body); 
     631 
     632 
    618633PJ_END_DECL 
    619634 
Note: See TracChangeset for help on using the changeset viewer.