-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding SNI extension if available #787
Conversation
9f9b70d
to
8ee4618
Compare
@kozlovic if we'd have a simple tcp server that could listen to connection we could probably configure the client to connect to it with tls_handshake_first... and we could check that the client hello does contain the SNI extension (which is in clear). Would that make sense? |
d977e65
to
544ba91
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that is the type of test that would verify that the hostname is actually set. Just made some requests to tweak few things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks for adding this test!
Thanks, @thierryba! |
This adds the SNI extension and completes the ability to use nits-server per instance in the cloud with automatic load balancing.
This fixes #786