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 6127dc2 commit 8779f3bCopy full SHA for 8779f3b
rsocket/transports/tcp/TcpConnectionFactory.cpp
@@ -44,7 +44,9 @@ class ConnectCallback : public folly::AsyncSocket::ConnectCallback {
44
45
if (sslContext) {
46
VLOG(3) << "Starting SSL socket";
47
+#if FOLLY_OPENSSL_HAS_ALPN
48
sslContext->setAdvertisedNextProtocols({"rs"});
49
+#endif // FOLLY_OPENSSL_HAS_ALPN
50
socket_.reset(new folly::AsyncSSLSocket(sslContext, evb));
51
} else {
52
VLOG(3) << "Starting socket";
0 commit comments