dynamically loading openssl funtions during runtime work in progress

This commit is contained in:
Tamas Elekes 2018-03-06 14:39:36 +01:00
parent baa4450aa6
commit 3bb7714f3b
3 changed files with 6 additions and 2 deletions

View File

@ -65,7 +65,7 @@ int main()
MyHandler handler(loop);
// init the SSL library
// SSL_library_init();
SSL_library_init();
// make a connection
AMQP::Address address("amqps://guest:guest@localhost/");

View File

@ -12,6 +12,11 @@
*/
#pragma once
/**
* Dependencies
*/
#include <openssl/ssl.h>
/**
* Beginnig of namespace
*/

View File

@ -19,7 +19,6 @@
#include <sys/ioctl.h>
#include <sys/uio.h>
#include <openssl/ssl.h>
/**
* FIONREAD on Solaris is defined elsewhere
*/