added get_count() method to IMC/IMV managers

This commit is contained in:
Andreas Steffen
2010-11-09 20:43:51 +01:00
parent c228ad607c
commit 08235c7ded
4 changed files with 28 additions and 0 deletions
+7
View File
@@ -48,6 +48,13 @@ struct imc_manager_t {
*/
imc_t* (*remove)(imc_manager_t *this, TNC_IMCID id);
/**
* Return the number of registered IMCs
*
* @return number of IMCs
*/
int (*get_count)(imc_manager_t *this);
/**
* Notify all IMC instances
*
+7
View File
@@ -48,6 +48,13 @@ struct imv_manager_t {
*/
imv_t* (*remove)(imv_manager_t *this, TNC_IMVID id);
/**
* Return the number of registered IMVs
*
* @return number of IMVs
*/
int (*get_count)(imv_manager_t *this);
/**
* Notify all IMV instances
*