GnuTLS: Define empty tls_connection_set_session_ticket_cb()

This allows EAP-FAST build to be completed even if it does not actually
work yet with GnuTLS.
This commit is contained in:
Jouni Malinen 2009-12-20 21:37:36 +02:00
parent 6d59e14c58
commit c9a7bbe5a8
1 changed files with 8 additions and 0 deletions

View File

@ -1417,3 +1417,11 @@ int tls_connection_ia_permute_inner_secret(void *tls_ctx,
return -1;
#endif /* GNUTLS_IA */
}
int tls_connection_set_session_ticket_cb(void *tls_ctx,
struct tls_connection *conn,
tls_session_ticket_cb cb, void *ctx)
{
return -1;
}