We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5e60c5 commit 8b65869Copy full SHA for 8b65869
src/main/java/com/pusher/client/connection/websocket/WebSocketClientWrapper.java
@@ -8,6 +8,7 @@
8
9
import javax.net.ssl.SSLContext;
10
import javax.net.ssl.SSLException;
11
+import javax.net.ssl.SSLParameters;
12
import javax.net.ssl.SSLSocketFactory;
13
14
import org.java_websocket.client.WebSocketClient;
@@ -89,4 +90,9 @@ public void onError(final Exception ex) {
89
90
public void removeWebSocketListener() {
91
webSocketListener = null;
92
}
93
+
94
+ @Override
95
+ protected void onSetSSLParameters(SSLParameters sslParameters) {
96
+ // https://github.com/TooTallNate/Java-WebSocket/wiki/No-such-method-error-setEndpointIdentificationAlgorithm
97
+ }
98
0 commit comments