eap-tls-common: Make send empty response func. public

This commit is contained in:
Tim Kourt 2018-11-29 14:41:41 -08:00 committed by Denis Kenzior
parent 779f668ab9
commit 8dc9276800
2 changed files with 3 additions and 1 deletions

View File

@ -320,7 +320,7 @@ static void eap_tls_send_response(struct eap_state *eap,
eap_tls_send_fragment(eap);
}
static void eap_tls_common_send_empty_response(struct eap_state *eap)
void eap_tls_common_send_empty_response(struct eap_state *eap)
{
struct eap_tls_state *eap_tls = eap_get_data(eap);
uint8_t buf[EAP_TLS_HEADER_LEN];

View File

@ -68,3 +68,5 @@ bool eap_tls_common_settings_load(struct eap_state *eap,
struct l_settings *settings, const char *prefix,
const struct eap_tls_variant_ops *variant_ops,
void *variant_data);
void eap_tls_common_send_empty_response(struct eap_state *eap);