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
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
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)
{
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
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