added explanatory comments

This commit is contained in:
Andreas Steffen 2010-09-09 08:57:13 +02:00
parent 48b8cbb206
commit 3b7eb3a9f4
2 changed files with 12 additions and 8 deletions

View File

@ -147,12 +147,16 @@ METHOD(tls_application_t, process, status_t,
switch (status) switch (status)
{ {
case SUCCESS: case SUCCESS:
/* fall through to NEED_MORE since response must be sent */
case NEED_MORE:
/* TODO support multiple EAP request/response exchanges */
this->method->destroy(this->method); this->method->destroy(this->method);
this->method = NULL; this->method = NULL;
return NEED_MORE; return NEED_MORE;
case NEED_MORE:
if (type != EAP_TNC)
{
this->method->destroy(this->method);
this->method = NULL;
}
return NEED_MORE;
case FAILED: case FAILED:
default: default:
if (vendor) if (vendor)

View File

@ -72,13 +72,13 @@ struct private_tls_eap_t {
}; };
/** /**
* Flags of an EAP-TLS/TTLS message * Flags of an EAP-TLS/TTLS/TNC message
*/ */
typedef enum { typedef enum {
EAP_TLS_LENGTH = (1<<7), EAP_TLS_LENGTH = (1<<7), /* shared with EAP-TTLS/TNC */
EAP_TLS_MORE_FRAGS = (1<<6), EAP_TLS_MORE_FRAGS = (1<<6), /* shared with EAP-TTLS/TNC */
EAP_TLS_START = (1<<5), EAP_TLS_START = (1<<5), /* shared with EAP-TTLS/TNC */
EAP_TTLS_VERSION = (0x07), EAP_TTLS_VERSION = (0x07), /* shared with EAP-TNC */
} eap_tls_flags_t; } eap_tls_flags_t;
#define EAP_TTLS_SUPPORTED_VERSION 0 #define EAP_TTLS_SUPPORTED_VERSION 0