aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/plugins/stroke/stroke_attribute.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2009-11-17 14:51:50 +0100
committerMartin Willi <martin@strongswan.org>2009-11-17 14:51:50 +0100
commitb5a2055fb1b88ea4abb97334d89e311c9ceaa7d4 (patch)
treeeb71f0e63c8859e6fd7d7d59559984feda61a441 /src/charon/plugins/stroke/stroke_attribute.c
parente6cf06027572382cc8d326ee3ccd265ff7e522e0 (diff)
downloadstrongswan-b5a2055fb1b88ea4abb97334d89e311c9ceaa7d4.tar.bz2
strongswan-b5a2055fb1b88ea4abb97334d89e311c9ceaa7d4.tar.xz
Give plugins more control of which configuration attributes to request, and pass received attributes back to the requesting handler
Diffstat (limited to 'src/charon/plugins/stroke/stroke_attribute.c')
-rw-r--r--src/charon/plugins/stroke/stroke_attribute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/plugins/stroke/stroke_attribute.c b/src/charon/plugins/stroke/stroke_attribute.c
index 5c24d346b..db8b53e96 100644
--- a/src/charon/plugins/stroke/stroke_attribute.c
+++ b/src/charon/plugins/stroke/stroke_attribute.c
@@ -531,7 +531,7 @@ stroke_attribute_t *stroke_attribute_create()
this->public.provider.acquire_address = (host_t*(*)(attribute_provider_t *this, char*, identification_t *,host_t *))acquire_address;
this->public.provider.release_address = (bool(*)(attribute_provider_t *this, char*,host_t *, identification_t*))release_address;
- this->public.provider.create_attribute_enumerator = (enumerator_t*(*)(attribute_provider_t*, identification_t *id))enumerator_create_empty;
+ this->public.provider.create_attribute_enumerator = (enumerator_t*(*)(attribute_provider_t*, identification_t *id, host_t *vip))enumerator_create_empty;
this->public.add_pool = (void(*)(stroke_attribute_t*, stroke_msg_t *msg))add_pool;
this->public.del_pool = (void(*)(stroke_attribute_t*, stroke_msg_t *msg))del_pool;
this->public.create_pool_enumerator = (enumerator_t*(*)(stroke_attribute_t*))create_pool_enumerator;