Deleted intermediate handshake_state
This commit is contained in:
committed by
Andreas Steffen
parent
a832232027
commit
4259bd6fb4
@@ -38,11 +38,6 @@ struct private_imc_attestation_state_t {
|
||||
* TNCCS connection state
|
||||
*/
|
||||
TNC_ConnectionState state;
|
||||
|
||||
/**
|
||||
* IMC Attestation handshake state
|
||||
*/
|
||||
imc_attestation_handshake_state_t handshake_state;
|
||||
|
||||
/**
|
||||
* PTS object
|
||||
@@ -70,19 +65,6 @@ METHOD(imc_state_t, destroy, void,
|
||||
free(this);
|
||||
}
|
||||
|
||||
METHOD(imc_attestation_state_t, get_handshake_state, imc_attestation_handshake_state_t,
|
||||
private_imc_attestation_state_t *this)
|
||||
{
|
||||
return this->handshake_state;
|
||||
}
|
||||
|
||||
METHOD(imc_attestation_state_t, set_handshake_state, void,
|
||||
private_imc_attestation_state_t *this,
|
||||
imc_attestation_handshake_state_t new_state)
|
||||
{
|
||||
this->handshake_state = new_state;
|
||||
}
|
||||
|
||||
METHOD(imc_attestation_state_t, get_pts, pts_t*,
|
||||
private_imc_attestation_state_t *this)
|
||||
{
|
||||
@@ -103,13 +85,10 @@ imc_state_t *imc_attestation_state_create(TNC_ConnectionID connection_id)
|
||||
.change_state = _change_state,
|
||||
.destroy = _destroy,
|
||||
},
|
||||
.get_handshake_state = _get_handshake_state,
|
||||
.set_handshake_state = _set_handshake_state,
|
||||
.get_pts = _get_pts,
|
||||
},
|
||||
.connection_id = connection_id,
|
||||
.state = TNC_CONNECTION_STATE_CREATE,
|
||||
.handshake_state = IMC_ATTESTATION_STATE_INIT,
|
||||
.pts = pts_create(TRUE),
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user