Ignore:
Timestamp:
Oct 19, 2011 1:08:14 PM (12 years ago)
Author:
bennylp
Message:

Renamed enum names to comply with the spec in ticket (re #1216)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjsip/include/pjsua-lib/pjsua.h

    r3829 r3830  
    13001300{ 
    13011301    /** 
    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 
    13051322 
    13061323} pjsua_destroy_flag; 
Note: See TracChangeset for help on using the changeset viewer.