Saad Rami
Saad Rami

Reputation: 81

Strange compilation issue boost/ssl

I'm migrating my app from boost 1.72 to boost 1.75.

The code was working with 1.72. but not for 1.75

I got this strange error when including boost/asio/ssl:

boost/asio/ssl/impl/host_name_verification.ipp : 
error X509_check_ip_asc was not declared in this scope

Have you any idea ? Thanks

Upvotes: 0

Views: 490

Answers (1)

Andrey Semashev
Andrey Semashev

Reputation: 10624

I suspect, you're using a too old version of OpenSSL. X509_check_ip_asc was added in OpenSSL 1.0.2.

Upvotes: 1

Related Questions