sl-0.9.6b$ ./config shared
> erik@tarzan:~/openssl-0.9.6b$ make
>
> Cheers,
>
> Erik
>
> On Thu, 23 Aug 2001, Carlo Medas wrote:
>
> > I wanna use shared lib...
> > I've read that I've to specify it when i do the Configure command...
> > S
Here is an example of setting a socket to non-blocking mode..
int Socket; long save_file_flags;
save_file_flags = fcntl(Socket, F_GETFL);
save_file_flags |= O_NONBLOCK;
fcntl(Socket, F_SETFL, save_file_flags);
Carlo Medas
- Original Message -
From: "A
Once you locate the certs you need, you have to use
SSL_load_verify_locations.
You could create a PEM file and put into your cert and the issuer cert, so
you can pass this file as argument of the function before...
- Original Message -
From: "Dr S N Henson" <[EMAIL PROTECTED]>
To: <[EMAIL
ificates
Thx all.
Carlo Medas
Hi all,
I'm using self-singned certificates and when my
client connects to the SSL server, he gets the CA, but the result of the verify
function is: That CA is not in the list of trusted CAs...
How can I add or modify the list of trusted
CAs?
Thx all
Carlo Medas