Randy wrote:
This code compiles and links fine.  If I uncomment the SSL_new line I get
"undefined symbol: ssl_x"

        SSL_CTX *ctx;
        // SSL_new *ssl_x;

SSL_new is not a type, but a function: "int SSL_new(SSL *);"

#include <openssl/ssl.h>
SSL *ssl_x;

should work.


HTH

Darryl
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to