summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bio/bio.h')
-rw-r--r--src/lib/libcrypto/bio/bio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/bio/bio.h b/src/lib/libcrypto/bio/bio.h
index 678155c34e..105d3ff3af 100644
--- a/src/lib/libcrypto/bio/bio.h
+++ b/src/lib/libcrypto/bio/bio.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: bio.h,v 1.42 2018/05/12 17:47:53 tb Exp $ */ 1/* $OpenBSD: bio.h,v 1.43 2018/05/12 18:51:59 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -642,7 +642,7 @@ long BIO_debug_callback(BIO *bio, int cmd, const char *argp, int argi,
642 long argl, long ret); 642 long argl, long ret);
643 643
644const BIO_METHOD *BIO_s_mem(void); 644const BIO_METHOD *BIO_s_mem(void);
645BIO *BIO_new_mem_buf(void *buf, int len); 645BIO *BIO_new_mem_buf(const void *buf, int len);
646const BIO_METHOD *BIO_s_socket(void); 646const BIO_METHOD *BIO_s_socket(void);
647const BIO_METHOD *BIO_s_connect(void); 647const BIO_METHOD *BIO_s_connect(void);
648const BIO_METHOD *BIO_s_accept(void); 648const BIO_METHOD *BIO_s_accept(void);
@@ -698,8 +698,8 @@ int BIO_set_tcp_ndelay(int sock, int turn_on);
698BIO *BIO_new_socket(int sock, int close_flag); 698BIO *BIO_new_socket(int sock, int close_flag);
699BIO *BIO_new_dgram(int fd, int close_flag); 699BIO *BIO_new_dgram(int fd, int close_flag);
700BIO *BIO_new_fd(int fd, int close_flag); 700BIO *BIO_new_fd(int fd, int close_flag);
701BIO *BIO_new_connect(char *host_port); 701BIO *BIO_new_connect(const char *host_port);
702BIO *BIO_new_accept(char *host_port); 702BIO *BIO_new_accept(const char *host_port);
703 703
704int 704int
705BIO_new_bio_pair(BIO **bio1, size_t writebuf1, 705BIO_new_bio_pair(BIO **bio1, size_t writebuf1,