dynamically loading openssl funtions during runtime work in progress
This commit is contained in:
parent
baa4450aa6
commit
3bb7714f3b
|
|
@ -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/");
|
||||
|
|
|
|||
|
|
@ -12,6 +12,11 @@
|
|||
*/
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* Dependencies
|
||||
*/
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
/**
|
||||
* Beginnig of namespace
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -19,7 +19,6 @@
|
|||
#include <sys/ioctl.h>
|
||||
#include <sys/uio.h>
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
/**
|
||||
* FIONREAD on Solaris is defined elsewhere
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue