-
Notifications
You must be signed in to change notification settings - Fork 282
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
Set application protocols on Android does not actually do the configuration #832
Comments
Note that this is especially a problem because |
Good catch, thanks! It looks there are other inconsistencies around SNI between the three implementations (Android, Android Platform and OpenJDK). |
On Android platform (with FileDescriptorSocket), setting application protocols (via
SSLParameters#setApplicationProtocols(...)
) does not actually do the configuration. Looking at how it is implemented atconscrypt/android/src/main/java/org/conscrypt/Platform.java
Lines 224 to 233 in 8e79804
application protocols are never put into
SSLParametersImpl
. This causes protocol configuration usingSSLParameters
API fail on Android.The text was updated successfully, but these errors were encountered: