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_util.h

    r1388 r1748  
    260260 
    261261 
    262 typedef void (*pjsip_send_callback)(pjsip_send_state*, pj_ssize_t sent, 
     262/** 
     263 * Declaration for callback function to be specified in  
     264 * #pjsip_endpt_send_request_stateless(), #pjsip_endpt_send_response(), or 
     265 * #pjsip_endpt_send_response2(). 
     266 * 
     267 * @param st        Structure to keep transmission state. 
     268 * @param sent      Number of bytes sent. 
     269 * @param cont      When current transmission fails, specify whether 
     270 *                  the function should fallback to next destination. 
     271 */ 
     272typedef void (*pjsip_send_callback)(pjsip_send_state *st, pj_ssize_t sent, 
    263273                                    pj_bool_t *cont); 
    264274 
     
    518528                                          pjsip_transaction **p_tsx ); 
    519529 
    520 typedef void (*pjsip_endpt_send_callback)(void*, pjsip_event*); 
     530/** 
     531 * Type of callback to be specified in #pjsip_endpt_send_request(). 
     532 * 
     533 * @param token     The token that was given in #pjsip_endpt_send_request() 
     534 * @param e         Completion event. 
     535 */ 
     536typedef void (*pjsip_endpt_send_callback)(void *token, pjsip_event *e); 
     537 
    521538/** 
    522539 * Send outgoing request and initiate UAC transaction for the request. 
Note: See TracChangeset for help on using the changeset viewer.