Ignore:
Timestamp:
Mar 17, 2006 5:57:52 PM (19 years ago)
Author:
bennylp
Message:

Changed pjsip_inv_send_msg() function

File:
1 edited

Legend:

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

    r283 r324  
    187187 * 
    188188 * @param endpt         The endpoint instance. 
    189  * @param app_module    Application module. 
    190189 * @param callback      Callback structure. 
    191190 * 
     
    193192 */ 
    194193PJ_DECL(pj_status_t) pjsip_inv_usage_init(pjsip_endpoint *endpt, 
    195                                           pjsip_module *app_module, 
    196194                                          const pjsip_inv_callback *cb); 
    197195 
     
    519517 * @param inv           The invite session. 
    520518 * @param tdata         The message to be sent. 
    521  * @param token         The token is an arbitrary application data that  
    522  *                      will be put in the transaction's mod_data array,  
    523  *                      at application module's index. Application can inspect 
    524  *                      this value when the framework reports the completion 
    525  *                      of the transaction that sends this message. 
    526519 * 
    527520 * @return              PJ_SUCCESS if transaction can be initiated  
     
    532525 */ 
    533526PJ_DECL(pj_status_t) pjsip_inv_send_msg(pjsip_inv_session *inv, 
    534                                         pjsip_tx_data *tdata, 
    535                                         void *token ); 
     527                                        pjsip_tx_data *tdata); 
    536528 
    537529 
     
    559551 
    560552 
     553/** 
     554 * Get state names for INVITE session state. 
     555 * 
     556 * @param state         The invite state. 
     557 * 
     558 * @return              String describing the state. 
     559 */ 
     560PJ_DECL(const char *) pjsip_inv_state_name(pjsip_inv_state state); 
     561 
    561562 
    562563PJ_END_DECL 
Note: See TracChangeset for help on using the changeset viewer.