diff options
Diffstat (limited to 'src/libcharon/plugins/tnccs_20/tnccs_20.h')
-rw-r--r-- | src/libcharon/plugins/tnccs_20/tnccs_20.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/libcharon/plugins/tnccs_20/tnccs_20.h b/src/libcharon/plugins/tnccs_20/tnccs_20.h index d42ebf218..314935069 100644 --- a/src/libcharon/plugins/tnccs_20/tnccs_20.h +++ b/src/libcharon/plugins/tnccs_20/tnccs_20.h @@ -23,7 +23,7 @@ #include <library.h> -#include <tls.h> +#include <tnc/tnccs/tnccs.h> /** * Create an instance of the TNC IF-TNCCS 2.0 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 2.0 protocol stack */ -tls_t *tnccs_20_create(bool is_server, identification_t *server, - identification_t *peer); +tnccs_t* tnccs_20_create(bool is_server, + identification_t *server, + identification_t *peer, + tnc_ift_type_t transport); #endif /** TNCCS_20_H_ @}*/ |