mirror of
https://github.com/github/codeql.git
synced 2026-05-11 01:39:28 +02:00
8 lines
135 B
C++
8 lines
135 B
C++
|
|
void useProtocol_bad()
|
|
{
|
|
boost::asio::ssl::context ctx_sslv2(boost::asio::ssl::context::sslv2); // BAD: outdated protocol
|
|
|
|
// ...
|
|
}
|