Whitespace cleanups in tls_eap

This commit is contained in:
Martin Willi
2012-09-12 13:19:52 +02:00
parent 5b96503e13
commit fb3cf1b708
+6 -6
View File
@@ -82,7 +82,7 @@ struct private_tls_eap_t {
int processed; int processed;
/** /**
* Maximum number of processed EAP messages/fragments * Maximum number of processed EAP messages/fragments
*/ */
int max_msg_count; int max_msg_count;
}; };
@@ -141,7 +141,7 @@ METHOD(tls_eap_t, initiate, status_t,
*out = chunk_clone(chunk_from_thing(pkt)); *out = chunk_clone(chunk_from_thing(pkt));
DBG2(DBG_TLS, "sending %N start packet (%u bytes)", DBG2(DBG_TLS, "sending %N start packet (%u bytes)",
eap_type_names, this->type, sizeof(eap_tls_packet_t)); eap_type_names, this->type, sizeof(eap_tls_packet_t));
DBG3(DBG_TLS, "%B", out); DBG3(DBG_TLS, "%B", out);
return NEED_MORE; return NEED_MORE;
} }
@@ -237,7 +237,7 @@ static status_t build_pkt(private_tls_eap_t *this, chunk_t *out)
kind = "further fragment"; kind = "further fragment";
if (this->first_fragment) if (this->first_fragment)
{ {
pkt->flags |= EAP_TLS_LENGTH; pkt->flags |= EAP_TLS_LENGTH;
this->first_fragment = FALSE; this->first_fragment = FALSE;
kind = "first fragment"; kind = "first fragment";
} }
@@ -267,7 +267,7 @@ static status_t build_pkt(private_tls_eap_t *this, chunk_t *out)
if (reclen) if (reclen)
{ {
if (pkt->flags & EAP_TLS_LENGTH) if (pkt->flags & EAP_TLS_LENGTH)
{ {
htoun32(pkt + 1, reclen); htoun32(pkt + 1, reclen);
len += sizeof(u_int32_t); len += sizeof(u_int32_t);
pkt->flags |= EAP_TLS_LENGTH; pkt->flags |= EAP_TLS_LENGTH;
@@ -276,14 +276,14 @@ static status_t build_pkt(private_tls_eap_t *this, chunk_t *out)
{ {
/* get rid of the reserved length field */ /* get rid of the reserved length field */
memcpy(buf+sizeof(eap_packet_t), memcpy(buf+sizeof(eap_packet_t),
buf+sizeof(eap_packet_t)+sizeof(u_int32_t), len); buf+sizeof(eap_packet_t)+sizeof(u_int32_t), len);
} }
} }
len += sizeof(eap_tls_packet_t); len += sizeof(eap_tls_packet_t);
htoun16(&pkt->length, len); htoun16(&pkt->length, len);
*out = chunk_clone(chunk_create(buf, len)); *out = chunk_clone(chunk_create(buf, len));
DBG2(DBG_TLS, "sending %N %s (%u bytes)", DBG2(DBG_TLS, "sending %N %s (%u bytes)",
eap_type_names, this->type, kind, len); eap_type_names, this->type, kind, len);
DBG3(DBG_TLS, "%B", out); DBG3(DBG_TLS, "%B", out);
return NEED_MORE; return NEED_MORE;
} }