diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2013-02-12 12:25:39 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2013-02-12 12:25:39 +0100 |
commit | 3e56352815ec786c69ca43c9f89b35ccc7634427 (patch) | |
tree | 0506cae82ce717d3dac425ce2b2d53d6c4b3b549 /src/libcharon/plugins/tnccs_11/tnccs_11.h | |
parent | bd1ee5bdc43979824e883f0c11d509700d8e9d4c (diff) | |
download | strongswan-3e56352815ec786c69ca43c9f89b35ccc7634427.tar.bz2 strongswan-3e56352815ec786c69ca43c9f89b35ccc7634427.tar.xz |
determine underlying IF-T transport protocol
Diffstat (limited to 'src/libcharon/plugins/tnccs_11/tnccs_11.h')
-rw-r--r-- | src/libcharon/plugins/tnccs_11/tnccs_11.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/libcharon/plugins/tnccs_11/tnccs_11.h b/src/libcharon/plugins/tnccs_11/tnccs_11.h index 79fccf9c7..531ebb611 100644 --- a/src/libcharon/plugins/tnccs_11/tnccs_11.h +++ b/src/libcharon/plugins/tnccs_11/tnccs_11.h @@ -23,7 +23,7 @@ #include <library.h> -#include <tls.h> +#include <tnc/tnccs/tnccs.h> /** * Create an instance of the TNC IF-TNCCS 1.1 protocol handler. @@ -31,9 +31,12 @@ * @param is_server TRUE to act as TNC Server, FALSE for TNC Client * @param server Server identity * @param peer Client identity + * @param transport Underlying IF-T transport protocol * @return TNC_IF_TNCCS 1.1 protocol stack */ -tls_t *tnccs_11_create(bool is_server, identification_t *server, - identification_t *peer); +tnccs_t* tnccs_11_create(bool is_server, + identification_t *server, + identification_t *peer, + tnc_ift_type_t transport); #endif /** TNCCS_11_H_ @}*/ |