diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-10-04 11:13:05 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-10-04 11:13:05 +0200 |
commit | 152d835d831cd61a140fa7373562078eababad3e (patch) | |
tree | f933fd6368fd40208a11741d2458cd439aef3916 /src/manager/gateway.h | |
parent | 758aa810ce7f59db0a89f666bbf53b06130a3475 (diff) | |
download | strongswan-152d835d831cd61a140fa7373562078eababad3e.tar.bz2 strongswan-152d835d831cd61a140fa7373562078eababad3e.tar.xz |
Fixed gateway_t.request declaration.
Diffstat (limited to 'src/manager/gateway.h')
-rw-r--r-- | src/manager/gateway.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/manager/gateway.h b/src/manager/gateway.h index 54aade7b1..db44a2ffa 100644 --- a/src/manager/gateway.h +++ b/src/manager/gateway.h @@ -35,9 +35,10 @@ struct gateway_t { * Send an XML request to the gateway. * * @param xml xml request string + * @param ... printf style argument list for xml request string * @return allocated xml response string */ - char* (*request)(gateway_t *this, char *xml); + char* (*request)(gateway_t *this, char *xml, ...); /** * Query the list of IKE_SAs and all its children. |