Changeset 1748 for pjproject/trunk/pjsip/include/pjsip/sip_util.h
- Timestamp:
- Jan 25, 2008 4:06:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsip/sip_util.h
r1388 r1748 260 260 261 261 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 */ 272 typedef void (*pjsip_send_callback)(pjsip_send_state *st, pj_ssize_t sent, 263 273 pj_bool_t *cont); 264 274 … … 518 528 pjsip_transaction **p_tsx ); 519 529 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 */ 536 typedef void (*pjsip_endpt_send_callback)(void *token, pjsip_event *e); 537 521 538 /** 522 539 * Send outgoing request and initiate UAC transaction for the request.
Note: See TracChangeset
for help on using the changeset viewer.