0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-20 12:02:28 +02:00

Reordered functions to ensure warning-free Windows build

Signed-off-by: Adriaan de Jong <dejong@fox-it.com>
Acked-by: Samuli Seppänen <samuli@openvpn.net>
Signed-off-by: David Sommerseth <davids@redhat.com>
This commit is contained in:
Adriaan de Jong 2011-10-31 16:29:17 +01:00 committed by David Sommerseth
parent 9009aa464b
commit 7ac7170d0a

View File

@ -122,6 +122,16 @@ void plugin_list_open (struct plugin_list *pl,
struct plugin_list *plugin_list_inherit (const struct plugin_list *src);
int plugin_call_ssl (const struct plugin_list *pl,
const int type,
const struct argv *av,
struct plugin_return *pr,
struct env_set *es
#ifdef USE_SSL
, int current_cert_depth,
x509_cert_t *current_cert
#endif
);
static inline int
plugin_call(const struct plugin_list *pl,
@ -137,17 +147,6 @@ plugin_call(const struct plugin_list *pl,
);
}
int plugin_call_ssl (const struct plugin_list *pl,
const int type,
const struct argv *av,
struct plugin_return *pr,
struct env_set *es
#ifdef USE_SSL
, int current_cert_depth,
x509_cert_t *current_cert
#endif
);
void plugin_list_close (struct plugin_list *pl);
bool plugin_defined (const struct plugin_list *pl, const int type);