Ignore:
Timestamp:
Jan 25, 2008 4:06:33 PM (16 years ago)
Author:
bennylp
Message:

Fixed doxygen comments everywhere

File:
1 edited

Legend:

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

    r1602 r1748  
    920920 * 
    921921 *****************************************************************************/ 
    922 typedef void (*pjsip_rx_callback)(pjsip_endpoint*, pj_status_t, pjsip_rx_data *); 
    923 typedef pj_status_t (*pjsip_tx_callback)(pjsip_endpoint*, pjsip_tx_data*); 
     922 
     923/** 
     924 * Type of callback to be called when transport manager receives incoming 
     925 * SIP message. 
     926 * 
     927 * @param ep        Endpoint. 
     928 * @param status    Receiption status. 
     929 * @param rd        Received packet. 
     930 */ 
     931typedef void (*pjsip_rx_callback)(pjsip_endpoint *ep, pj_status_t status,  
     932                                  pjsip_rx_data *rd); 
     933 
     934/** 
     935 * Type of callback to be called before transport manager is about 
     936 * to transmit SIP message. 
     937 * 
     938 * @param ep        Endpoint. 
     939 * @param td        Transmit data. 
     940 */ 
     941typedef pj_status_t (*pjsip_tx_callback)(pjsip_endpoint *ep, pjsip_tx_data*td); 
     942 
    924943/** 
    925944 * Create a transport manager. Normally application doesn't need to call 
Note: See TracChangeset for help on using the changeset viewer.