diff options
author | Martin Willi <martin@revosec.ch> | 2012-08-27 14:48:41 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2012-08-30 16:43:43 +0200 |
commit | d55fe264d1dd33a2751aa75a6f814e153f6354d4 (patch) | |
tree | 794fa35496d7374c3f675b38a692045d880ab7d6 /src/libhydra/attributes/attribute_manager.h | |
parent | feb8550401c85218523c007f0d52a1c9bf006342 (diff) | |
download | strongswan-d55fe264d1dd33a2751aa75a6f814e153f6354d4.tar.bz2 strongswan-d55fe264d1dd33a2751aa75a6f814e153f6354d4.tar.xz |
Pass all configured pool names to attribute provider enumerator
Diffstat (limited to 'src/libhydra/attributes/attribute_manager.h')
-rw-r--r-- | src/libhydra/attributes/attribute_manager.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libhydra/attributes/attribute_manager.h b/src/libhydra/attributes/attribute_manager.h index 385580e56..8bc80ca11 100644 --- a/src/libhydra/attributes/attribute_manager.h +++ b/src/libhydra/attributes/attribute_manager.h @@ -62,13 +62,14 @@ struct attribute_manager_t { /** * Create an enumerator over attributes to hand out to a peer. * - * @param pool pool name to get attributes from + * @param pool list of pools names (char*) to query attributes from * @param id peer identity to hand out attributes to * @param vip list of virtual IPs (host_t*) to assign to peer * @return enumerator (configuration_attribute_type_t, chunk_t) */ enumerator_t* (*create_responder_enumerator)(attribute_manager_t *this, - char *pool, identification_t *id, linked_list_t *vips); + linked_list_t *pool, identification_t *id, + linked_list_t *vips); /** * Register an attribute provider to the manager. |