Opened 16 years ago

Closed 16 years ago

#424 closed enhancement (fixed)

Added API to retrieve number of transactions and dialogs (thanks Sergey Bakulin)

Reported by: bennylp Owned by: bennylp
Priority: normal Milestone: release-0.9.0
Component: pjsip Version: trunk
Keywords: Cc:
Backport to 1.x milestone: Backported:

Description

Some application needs to query the number of transactions and dialogs currently active in the stack.

Change History (1)

comment:1 Changed 16 years ago by bennylp

  • Resolution set to fixed
  • Status changed from new to closed

Added these two functions in r1594:

In sip_transaction.h:

/**
 * Retrieve the current number of transactions currently registered
 * in the hash table.
 *
 * @return        Number of transactions.
 */
PJ_DECL(unsigned) pjsip_tsx_layer_get_tsx_count(void);

In sip_ua_layer.h:

/**
 * Retrieve the current number of dialog-set currently registered
 * in the hash table. Note that dialog-set is different than dialog
 * when the request forks. In this case, all dialogs created from
 * the original request will belong to the same dialog set. When
 * no forking occurs, the number of dialog sets will be equal to
 * the number of dialogs.
 *
 * @return        Number of dialog sets.
 */
PJ_DECL(pj_uint32_t) pjsip_ua_get_dlg_set_count(void);
Note: See TracTickets for help on using tickets.