diff options
author | Martin Willi <martin@strongswan.org> | 2007-09-13 07:45:04 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2007-09-13 07:45:04 +0000 |
commit | b8c7453a8272e592f167e3e462539e6361e56974 (patch) | |
tree | ca81ab83a153cc4e020c6c522f3b4d011c960840 /src/manager/lib/enumerator.h | |
parent | 28c5feddbda5b5ffa0302eb1801364dc2f83011c (diff) | |
download | strongswan-b8c7453a8272e592f167e3e462539e6361e56974.tar.bz2 strongswan-b8c7453a8272e592f167e3e462539e6361e56974.tar.xz |
manager can query and list IKE_SA status (no layout yet)
Diffstat (limited to 'src/manager/lib/enumerator.h')
-rw-r--r-- | src/manager/lib/enumerator.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/manager/lib/enumerator.h b/src/manager/lib/enumerator.h index de272f9c9..7321e2192 100644 --- a/src/manager/lib/enumerator.h +++ b/src/manager/lib/enumerator.h @@ -35,10 +35,11 @@ struct enumerator_t { /** * @brief Enumerate collection. * - * @param ... variable argument list of pointers, NULL terminated + * @param item first enumerated item + * @param ... additional items enumerated, depending in implementation * @return TRUE if pointers returned */ - bool (*enumerate)(enumerator_t *this, ...); + bool (*enumerate)(enumerator_t *this, void *item, ...); /** * @brief Destroy a enumerator instance. |