-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Building mesalink as drop-in replacement for nginx #51
Comments
If I'm understanding this right we'd need to implement SSL_CTX_set_options and define/implement all of the bit fields that can be set, or make them no-ops if not supported. Here are all of the uses in nginx.
|
Exactly! SSL_CTX_set_options() and a few X509 related APIs are needed. But
some options may not be supported given the current rustls APIs.
…On Tue, Feb 9, 2021 at 10:04 PM Kevin Burke ***@***.***> wrote:
If I'm understanding this right we'd need to implement SSL_CTX_set_options
and define/implement all of the bit fields that can be set, or make them
no-ops if not supported.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#51 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AALATXCYNJDEHKAS2OTYJQLS6IOV5ANCNFSM4XMJSHWA>
.
|
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Hi, I'm trying to compile nginx using mesalink as the replacement for OpenSSL.
I've compiled mesalink using the following:
Then compile nginx (sources available at github.com/nginx/nginx) with the following options:
I get the following error:
If you read through
objs/autoconf.err
you get:I searched for SSL_CTX_set_options in mesalink source code and issues, but I couldn't find anything. Any idea how to get past this? Do I need to define a shim
.h
file or something?Updates #12.
The text was updated successfully, but these errors were encountered: