#include "SSL_Export.h"
#include "ace/os_include/os_stdio.h"
#include <openssl/bio.h>
Include dependency graph for SSL_Asynch_BIO.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
ACE_BEGIN_VERSIONED_NAMESPACE_DECL BIO * | ACE_SSL_make_BIO (void *ssl_asynch_stream) |
Ossama Othman <ossama@uci.edu>
Definition in file SSL_Asynch_BIO.h.
|
Definition at line 67 of file SSL_Asynch_BIO.cpp. References methods_ACE. Referenced by ACE_SSL_Asynch_Stream::open().
00068 { 00069 BIO * const pBIO = BIO_new (&methods_ACE); 00070 00071 if (pBIO) 00072 BIO_ctrl (pBIO, 00073 BIO_C_SET_FILE_PTR, 00074 0, 00075 ssl_asynch_stream); 00076 00077 return pBIO; 00078 } |