implemented get_remediation_instructions()

This commit is contained in:
Andreas Steffen
2012-11-10 23:47:06 +01:00
parent b217e16f7e
commit af83700f88
8 changed files with 156 additions and 19 deletions
@@ -242,6 +242,13 @@ METHOD(imv_state_t, get_reason_string, bool,
return TRUE;
}
METHOD(imv_state_t, get_remediation_instructions, bool,
private_imv_attestation_state_t *this, enumerator_t *language_enumerator,
char **string, char **lang_code)
{
return FALSE;
}
METHOD(imv_state_t, destroy, void,
private_imv_attestation_state_t *this)
{
@@ -439,6 +446,7 @@ imv_state_t *imv_attestation_state_create(TNC_ConnectionID connection_id)
.get_recommendation = _get_recommendation,
.set_recommendation = _set_recommendation,
.get_reason_string = _get_reason_string,
.get_remediation_instructions = _get_remediation_instructions,
.destroy = _destroy,
},
.get_handshake_state = _get_handshake_state,