Updated through tag hostap_2_5 from git://w1.fi/hostap.git
[mech_eap.git] / libeap / src / tls / tlsv1_server_i.h
index d11ea75..96d79b3 100644 (file)
@@ -2,14 +2,8 @@
  * TLSv1 server - internal structures
  * Copyright (c) 2006-2007, Jouni Malinen <j@w1.fi>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * Alternatively, this software may be distributed under the terms of BSD
- * license.
- *
- * See README and COPYING for more details.
+ * This software may be distributed under the terms of the BSD license.
+ * See README for more details.
  */
 
 #ifndef TLSV1_SERVER_I_H
@@ -57,13 +51,24 @@ struct tlsv1_server {
        tlsv1_server_session_ticket_cb session_ticket_cb;
        void *session_ticket_cb_ctx;
 
+       void (*log_cb)(void *ctx, const char *msg);
+       void *log_cb_ctx;
+
        int use_session_ticket;
 
        u8 *dh_secret;
        size_t dh_secret_len;
+
+#ifdef CONFIG_TESTING_OPTIONS
+       u32 test_flags;
+       int test_failure_reported;
+#endif /* CONFIG_TESTING_OPTIONS */
 };
 
 
+void tlsv1_server_log(struct tlsv1_server *conn, const char *fmt, ...)
+PRINTF_FORMAT(2, 3);
+
 void tlsv1_server_alert(struct tlsv1_server *conn, u8 level, u8 description);
 int tlsv1_server_derive_keys(struct tlsv1_server *conn,
                             const u8 *pre_master_secret,
@@ -73,5 +78,7 @@ u8 * tlsv1_server_send_alert(struct tlsv1_server *conn, u8 level,
                             u8 description, size_t *out_len);
 int tlsv1_server_process_handshake(struct tlsv1_server *conn, u8 ct,
                                   const u8 *buf, size_t *len);
+void tlsv1_server_get_dh_p(struct tlsv1_server *conn, const u8 **dh_p,
+                          size_t *dh_p_len);
 
 #endif /* TLSV1_SERVER_I_H */