diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-10-20 22:06:10 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-10-25 01:10:16 +0200 |
commit | c008d2cc4618ff5afcb8ea8b8ff7e756545e4c47 (patch) | |
tree | e4801e2498c8b377b513c612cf123ea52d58ca7c /src/libcharon/plugins/tnccs_11 | |
parent | f0fa002fd186a375a5924bce7e779535febd57d6 (diff) | |
download | strongswan-c008d2cc4618ff5afcb8ea8b8ff7e756545e4c47.tar.bz2 strongswan-c008d2cc4618ff5afcb8ea8b8ff7e756545e4c47.tar.xz |
moved imv_manager to libtnccs
Diffstat (limited to 'src/libcharon/plugins/tnccs_11')
-rw-r--r-- | src/libcharon/plugins/tnccs_11/tnccs_11.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/libcharon/plugins/tnccs_11/tnccs_11.c b/src/libcharon/plugins/tnccs_11/tnccs_11.c index c7f96731e..4000ae2be 100644 --- a/src/libcharon/plugins/tnccs_11/tnccs_11.c +++ b/src/libcharon/plugins/tnccs_11/tnccs_11.c @@ -99,6 +99,11 @@ struct private_tnccs_11_t { */ imc_manager_t *imcs; + /** + * TNC IMV manager controlling Integrity Measurement Verifiers + */ + imc_manager_t *imvs; + }; METHOD(tnccs_t, send_msg, TNC_Result, @@ -181,7 +186,7 @@ static void handle_message(private_tnccs_11_t *this, tnccs_msg_t *msg) this->send_msg = TRUE; if (this->is_server) { - charon->imvs->receive_message(charon->imvs, + this->imvs->receive_message(this->imvs, this->connection_id, msg_body.ptr, msg_body.len, msg_type); } else @@ -343,7 +348,7 @@ METHOD(tls_t, process, status_t, this->send_msg = TRUE; if (this->is_server) { - charon->imvs->batch_ending(charon->imvs, this->connection_id); + this->imvs->batch_ending(this->imvs, this->connection_id); } else { @@ -540,6 +545,7 @@ tls_t *tnccs_11_create(bool is_server) .is_server = is_server, .mutex = mutex_create(MUTEX_TYPE_DEFAULT), .imcs = lib->get(lib, "imc-manager"), + .imvs = lib->get(lib, "imv-manager"), ); return &this->public; |