if (this->input.len == this->inpos)
{ /* message completely defragmented, process */
msg = tls_reader_create(this->input);
+ DBG2(DBG_IKE, "received TLS %N message",
+ tls_handshake_type_names, this->type);
status = this->handshake->process(this->handshake, this->type, msg);
msg->destroy(msg);
chunk_free(&this->input);
switch (status)
{
case NEED_MORE:
+ DBG2(DBG_IKE, "sending TLS %N message",
+ tls_handshake_type_names, hs_type);
msg->write_uint8(msg, hs_type);
msg->write_data24(msg, writer->get_buf(writer));
break;