search for: _host_len

Displaying 1 result from an estimated 1 matches for "_host_len".

Did you mean: vhost_len
2017 Jan 02
1
[PATCH] Use ASN1_STRING_get0_data for openssl-1.1.0
...0000L # define BIO_set_data(_b,_ptr) ((_b)->ptr=(_ptr)) # define BIO_set_init(_b,_init) ((_b)->init=(_init)) +# define ASN1_STRING_get0_data ASN1_STRING_data # endif static int op_bio_retry_new(BIO *_b){ @@ -1632,7 +1635,7 @@ static int op_http_hostname_match(const char *_host,size_t _host_len, size_t pattern_prefix_len; size_t pattern_suffix_len; if(OP_UNLIKELY(_host_len>(size_t)INT_MAX))return 0; - pattern=(const char *)ASN1_STRING_data(_pattern); + pattern=(const char *)ASN1_STRING_get0_data(_pattern); pattern_len=strlen(pattern); /*Check the pattern for...