Fix node integration not working
This commit is contained in:
parent
a31cbd24a1
commit
dd4d3db47b
2 changed files with 3 additions and 4 deletions
|
@ -29,9 +29,9 @@ uint16_t GetSSLProtocolVersion(const std::string& version_string) {
|
|||
return version;
|
||||
}
|
||||
|
||||
std::vector<uint16> ParseCipherSuites(
|
||||
std::vector<uint16_t> ParseCipherSuites(
|
||||
const std::vector<std::string>& cipher_strings) {
|
||||
std::vector<uint16> cipher_suites;
|
||||
std::vector<uint16_t> cipher_suites;
|
||||
cipher_suites.reserve(cipher_strings.size());
|
||||
|
||||
for (auto& cipher_string : cipher_strings) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue