Skip to content

Commit

Permalink
Save client alpns and sig algs for TLS 1.3
Browse files Browse the repository at this point in the history
Reviewed By: knekritz

Differential Revision: D51387222

fbshipit-source-id: cdde324e4d1fca466d6e7a64a1584e038e2b86ce
  • Loading branch information
Anzhelika Iugai authored and facebook-github-bot committed Nov 29, 2023
1 parent 5e19faf commit 5b8b9dc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions wangle/acceptor/FizzAcceptorHandshakeHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ void FizzAcceptorHandshakeHelper::fizzHandshakeSuccess(
detail::enumVectorToHexStr(handshakeLogging->clientCiphers));
tinfo_.sslClientExts = std::make_shared<std::string>(
folly::join(":", handshakeLogging->clientExtensions));
tinfo_.clientAlpns = std::make_shared<std::vector<std::string>>(
handshakeLogging->clientAlpns);
tinfo_.sslClientSigAlgs =
std::make_shared<std::string>(detail::enumVectorToHexStr(
handshakeLogging->clientSignatureAlgorithms));
}

auto appProto = transport->getApplicationProtocol();
Expand Down

0 comments on commit 5b8b9dc

Please sign in to comment.