Updated to hostap_2_6
[mech_eap.git] / libeap / src / tls / tlsv1_client_i.h
index 55fdcf8..12ec8df 100644 (file)
@@ -29,11 +29,14 @@ struct tlsv1_client {
        u8 alert_level;
        u8 alert_description;
 
+       unsigned int flags; /* TLS_CONN_* bitfield */
+
        unsigned int certificate_requested:1;
        unsigned int session_resumed:1;
        unsigned int session_ticket_included:1;
        unsigned int use_session_ticket:1;
-       unsigned int disable_time_checks:1;
+       unsigned int cert_in_cb:1;
+       unsigned int ocsp_resp_received:1;
 
        struct crypto_public_key *server_rsa_key;
 
@@ -64,6 +67,12 @@ struct tlsv1_client {
        void *session_ticket_cb_ctx;
 
        struct wpabuf *partial_input;
+
+       void (*event_cb)(void *ctx, enum tls_event ev,
+                        union tls_event_data *data);
+       void *cb_ctx;
+
+       struct x509_certificate *server_cert;
 };
 
 
@@ -81,4 +90,11 @@ int tlsv1_client_process_handshake(struct tlsv1_client *conn, u8 ct,
                                   const u8 *buf, size_t *len,
                                   u8 **out_data, size_t *out_len);
 
+enum tls_ocsp_result {
+       TLS_OCSP_NO_RESPONSE, TLS_OCSP_INVALID, TLS_OCSP_GOOD, TLS_OCSP_REVOKED
+};
+
+enum tls_ocsp_result tls_process_ocsp_response(struct tlsv1_client *conn,
+                                              const u8 *resp, size_t len);
+
 #endif /* TLSV1_CLIENT_I_H */