]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - doc/man3/BIO_f_ssl.pod
Remove unnecessary setting SSL_MODE_AUTO_RETRY
[thirdparty/openssl.git] / doc / man3 / BIO_f_ssl.pod
index 8eee317c7adf22064f3c33bdfc9a456c3dc11190..7ed179e4539876c68b35a7b8791a505c762b35a9 100644 (file)
@@ -174,9 +174,6 @@ unencrypted example in L<BIO_s_connect(3)>.
      exit(1);
  }
 
- /* Don't want any retries */
- SSL_set_mode(ssl, SSL_MODE_AUTO_RETRY);
-
  /* XXX We might want to do other things with ssl here */
 
  /* An empty host part means the loopback address */
@@ -234,7 +231,6 @@ a client and also echoes the request to standard output.
      exit(1);
  }
 
- SSL_set_mode(ssl, SSL_MODE_AUTO_RETRY);
  bbio = BIO_new(BIO_f_buffer());
  sbio = BIO_push(bbio, sbio);
  acpt = BIO_new_accept("4433");