Process PB-TNC batches received via PT-TLS asynchronously

This commit is contained in:
Andreas Steffen
2013-08-19 09:52:12 +02:00
parent 9dc3b2053d
commit 1e92d5f114
2 changed files with 61 additions and 68 deletions
+1 -4
View File
@@ -587,8 +587,7 @@ static bool pt_tls_receive_more(pt_tls_server_t *this, int fd,
switch (this->handle(this))
{
case NEED_MORE:
DBG1(DBG_TNC, "PT-TLS connection needs more");
break;
return TRUE;
case FAILED:
case SUCCESS:
default:
@@ -597,8 +596,6 @@ static bool pt_tls_receive_more(pt_tls_server_t *this, int fd,
close(fd);
return FALSE;
}
return TRUE;
}
/**