Re: explicit linking question

2003-02-13 Thread mlcarey59
When is the SSL object being called? You can set a flag in your application to load the object. int SSL = 1; if(SSL == 1) { /*Load SSL Object*/ } - Original Message - From: "dan demers" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 12:17 PM Subject: explic

Re: Request for help!

2002-12-30 Thread mlcarey59
Title: Message See FAQ at OpenSSL site.   This problem has to do with compiler options.  You should compile the OpenSSL distribution with the "MD" Multi Thread version of the runtine C library. - Original Message - From: Vidya Prabakar To: [EMAIL PROTECTED] Sent: Frid

Re: Socket call fails with OpenSSL 0.9.6h on Win32

2002-12-29 Thread mlcarey59
Peter This works for me. #include #pragma comment(lib,"wsock32.lib") int main(int argc, char *argv[]) { int nRetCode; WSADATA wsData; WORD wVersionRequested; wVersionRequested = MAKEWORD(1,1); nRetCode = WSAStartup(wVersionRequested,&wsData); if(nRetCode != 0) {

Openssl-0.9.7-beta3 applications are not being built "s_server.exe" etc.

2002-09-24 Thread mlcarey59
Where are the applications in OpenSSL-0.9.7-beta3 30 Jul 2002?     The applications in the apps directory are not being built. The package compiles and passes all test but it does not build the applications, only the object files are being built.   Marcus

Re: BIO_printf() and ERR_print_errors() do not allocate memory

2002-09-22 Thread mlcarey59
I got it to work by selecting Project : Settings from the menu to access the Project Settings dialog and under C/C++ and selecting Code Generation from the Category drop down box. Setting the runtime library to Multithreaded DLL, which is the library that OpenSSL uses, works. I should have taken