Skip to content

Commit

Permalink
feature: support AWS-LC SSL Library.
Browse files Browse the repository at this point in the history
  • Loading branch information
devhaozi committed Sep 6, 2024
1 parent 69f0cd7 commit cb5ba53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ngx_stream_lua_ssl_certby.c
Original file line number Diff line number Diff line change
Expand Up @@ -1348,7 +1348,7 @@ ngx_stream_lua_ffi_set_cert(ngx_stream_lua_request_t *r,

# else

#ifdef OPENSSL_IS_BORINGSSL
#if defined(OPENSSL_IS_BORINGSSL) || defined(OPENSSL_IS_AWSLC)
size_t i;
#else
int i;
Expand Down Expand Up @@ -1494,7 +1494,7 @@ ngx_stream_lua_ffi_ssl_verify_client(ngx_stream_lua_request_t *r,
X509 *x509 = NULL;
X509_NAME *subject = NULL;
X509_STORE *ca_store = NULL;
#ifdef OPENSSL_IS_BORINGSSL
#if defined(OPENSSL_IS_BORINGSSL) || defined(OPENSSL_IS_AWSLC)
size_t i;
#else
int i;
Expand Down

0 comments on commit cb5ba53

Please sign in to comment.