{
if (this->resume)
{
- return this->state == STATE_FINISHED_SENT;
+ return this->state == STATE_FINISHED_SENT;
}
-
return this->state == STATE_FINISHED_RECEIVED;
}
else
return NEED_MORE;
}
- if (this-> version < TLS_1_3 ||
+ if (this->version < TLS_1_3 ||
type == TLS_APPLICATION_DATA)
{
if (this->aead_in)
status = this->compression->build(this->compression, type, data);
if (status == NEED_MORE)
{
- if (this-> version < TLS_1_3 && *type == TLS_CHANGE_CIPHER_SPEC)
+ if (*type == TLS_CHANGE_CIPHER_SPEC && this->version < TLS_1_3)
{
return status;
}