Ignore:
Timestamp:
Nov 20, 2005 7:58:10 PM (18 years ago)
Author:
bennylp
Message:

More compliant URI parser, comparison, etc.

File:
1 edited

Legend:

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

    r60 r64  
    130130 
    131131 
     132/** 
     133 * Create new transaction. Application would normally use  
     134 * #pjsip_endpt_create_tsx rather than this function. 
     135 * 
     136 * @param pool      Pool to use by the transaction. 
     137 * @param endpt     Endpoint. 
     138 * @param p_tsx     Pointer to return the transaction. 
     139 * 
     140 * @return          PJ_SUCCESS or the appropriate error code. 
     141 * 
     142 * @see pjsip_endpt_create_tsx 
     143 * 
     144 */ 
     145PJ_DEF(pj_status_t) pjsip_tsx_create( pj_pool_t *pool, 
     146                                      pjsip_endpoint *endpt, 
     147                                      pjsip_transaction **p_tsx); 
     148 
    132149/**  
    133150 * Init transaction as UAC from the specified transmit data (\c tdata). 
Note: See TracChangeset for help on using the changeset viewer.