Rename SSLeay_add_all_algorithms() et al to
[openssl.git] / demos / bio / sconnect.c
index 8a667f5911781ea5ee3ef796f10f050cd0869327..87b380b258cb8f5b0c3574ec5aa07ac37a3fde0b 100644 (file)
@@ -9,8 +9,9 @@
  */
 #include <stdio.h>
 #include <stdlib.h>
-#include "err.h"
-#include "ssl.h"
+#include <unistd.h>
+#include <openssl/err.h>
+#include <openssl/ssl.h>
 
 extern int errno;
 
@@ -35,7 +36,7 @@ char *argv[];
        SSL_load_error_strings();
 
        /* Setup all the global SSL stuff */
-       SSLeay_add_ssl_algorithms();
+       OpenSSL_add_ssl_algorithms();
        ssl_ctx=SSL_CTX_new(SSLv23_client_method());
 
        /* Lets make a SSL structure */
@@ -48,7 +49,7 @@ char *argv[];
 
        /* Lets use a connect BIO under the SSL BIO */
        out=BIO_new(BIO_s_connect());
-       BIO_set_hostname(out,host);
+       BIO_set_conn_hostname(out,host);
        BIO_set_nbio(out,1);
        out=BIO_push(ssl_bio,out);