You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In wangle/server/Acceptor.cpp, for SSL Connections, the Handshake is done by Fizz. Since I needed a callback at ClientHello message to fetch the server name from SNI extension in ClientHello, I implemented the handshake using folly::AsyncSSLSocket which has the ClientHello callback function. Does this cause any issues in the functioning of Server?
In
wangle/server/Acceptor.cpp
, for SSL Connections, the Handshake is done by Fizz. Since I needed a callback at ClientHello message to fetch the server name from SNI extension in ClientHello, I implemented the handshake usingfolly::AsyncSSLSocket
which has the ClientHello callback function. Does this cause any issues in the functioning of Server?Example.cpp (My Implementation)
Acceptor.cpp (Wangle's Implementation)
The text was updated successfully, but these errors were encountered: