Changeset 3830 for pjproject/branches/1.x/pjsip/include/pjsua-lib/pjsua.h
- Timestamp:
- Oct 19, 2011 1:08:14 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x/pjsip/include/pjsua-lib/pjsua.h
r3829 r3830 1300 1300 { 1301 1301 /** 1302 * Do not invoke any networking functions. 1303 */ 1304 PJSUA_DESTROY_NO_NETWORK = 1 1302 * Allow sending outgoing messages (such as unregistration, event 1303 * unpublication, BYEs, unsubscription, etc.), but do not wait for 1304 * responses. This is useful to perform "best effort" clean up 1305 * without delaying the shutdown process waiting for responses. 1306 */ 1307 PJSUA_DESTROY_NO_RX_MSG = 1, 1308 1309 /** 1310 * If this flag is set, do not send any outgoing messages at all. 1311 * This flag is useful if application knows that the network which 1312 * the messages are to be sent on is currently down. 1313 */ 1314 PJSUA_DESTROY_NO_TX_MSG = 2, 1315 1316 /** 1317 * Do not send or receive messages during destroy. This flag is 1318 * shorthand for PJSUA_DESTROY_NO_RX_MSG + PJSUA_DESTROY_NO_TX_MSG. 1319 */ 1320 PJSUA_DESTROY_NO_NETWORK = PJSUA_DESTROY_NO_RX_MSG | 1321 PJSUA_DESTROY_NO_TX_MSG 1305 1322 1306 1323 } pjsua_destroy_flag;
Note: See TracChangeset
for help on using the changeset viewer.