Ignore:
Timestamp:
Jan 7, 2006 6:44:25 PM (18 years ago)
Author:
bennylp
Message:

Added test functions for UAC transaction

File:
1 edited

Legend:

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

    r107 r109  
    9393     */ 
    9494    pjsip_transport            *transport;      /**< Transport to use.      */ 
     95    pj_bool_t                   is_reliable;    /**< Transport is reliable. */ 
    9596    pj_sockaddr                 addr;           /**< Destination address.   */ 
    9697    int                         addr_len;       /**< Address length.        */ 
     
    190191/** 
    191192 * Transmit message in tdata with this transaction. It is possible to 
    192  * pass NULL in tdata for UAC transaction, which in this case the request 
    193  * message which was specified in #pjsip_tsx_create_uac() will be sent. 
     193 * pass NULL in tdata for UAC transaction, which in this case the last message 
     194 * or the request message which was specified in #pjsip_tsx_create_uac()  
     195 * will be sent. 
     196 * 
     197 * This function decrements the reference counter of the transmit buffer. 
    194198 * 
    195199 * @param tsx       The transaction. 
    196  * @param tdata     The outgoing message. 
     200 * @param tdata     The outgoing message. If NULL is specified, then the 
     201 *                  last message transmitted (or the message specified  
     202 *                  in UAC initialization) will be sent. 
    197203 * 
    198204 * @return          PJ_SUCCESS if successfull. 
Note: See TracChangeset for help on using the changeset viewer.