Searched refs:alpn_proposed (Results 1 – 4 of 4) sorted by relevance
2060 if (s->cert->alpn_proposed != NULL) in tls1_alpn_handle_client_hello()2061 OPENSSL_free(s->cert->alpn_proposed); in tls1_alpn_handle_client_hello()2062 s->cert->alpn_proposed = OPENSSL_malloc(data_len); in tls1_alpn_handle_client_hello()2063 if (s->cert->alpn_proposed == NULL) { in tls1_alpn_handle_client_hello()2067 memcpy(s->cert->alpn_proposed, data, data_len); in tls1_alpn_handle_client_hello()2086 if (s->ctx->alpn_select_cb != NULL && s->cert->alpn_proposed != NULL) { in tls1_alpn_handle_client_hello_late()2088 s->cert->alpn_proposed, in tls1_alpn_handle_client_hello_late()2131 if (s->cert->alpn_proposed) { in ssl_scan_clienthello_tlsext()2132 OPENSSL_free(s->cert->alpn_proposed); in ssl_scan_clienthello_tlsext()2133 s->cert->alpn_proposed = NULL; in ssl_scan_clienthello_tlsext()
249 if (s->cert->alpn_proposed) { in SSL_clear()250 OPENSSL_free(s->cert->alpn_proposed); in SSL_clear()251 s->cert->alpn_proposed = NULL; in SSL_clear()3208 ssl->cert->alpn_proposed = ocert->alpn_proposed; in SSL_set_SSL_CTX()3210 ocert->alpn_proposed = NULL; in SSL_set_SSL_CTX()
506 if (c->alpn_proposed) in ssl_cert_free()507 OPENSSL_free(c->alpn_proposed); in ssl_cert_free()
702 unsigned char *alpn_proposed; /* server */ member