diff options
author | tb <> | 2018-07-09 09:52:18 +0000 |
---|---|---|
committer | tb <> | 2018-07-09 09:52:18 +0000 |
commit | db7a8addd4f077789793b696f682beb19b018545 (patch) | |
tree | 3351f5ca1630fb526d8b7385160c1a1fe8de9d30 /src | |
parent | 3c26295b1f9b718f2e9d39df5dd95d25d2b75449 (diff) | |
download | openbsd-db7a8addd4f077789793b696f682beb19b018545.tar.gz openbsd-db7a8addd4f077789793b696f682beb19b018545.tar.bz2 openbsd-db7a8addd4f077789793b696f682beb19b018545.zip |
sync with const changes in bio.h r1.45.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/man/BIO_meth_new.3 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/libcrypto/man/BIO_meth_new.3 b/src/lib/libcrypto/man/BIO_meth_new.3 index 75d5ff23db..2159560596 100644 --- a/src/lib/libcrypto/man/BIO_meth_new.3 +++ b/src/lib/libcrypto/man/BIO_meth_new.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: BIO_meth_new.3,v 1.4 2018/03/23 23:18:17 schwarze Exp $ | 1 | .\" $OpenBSD: BIO_meth_new.3,v 1.5 2018/07/09 09:52:18 tb Exp $ |
2 | .\" full merge up to: OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 | 2 | .\" full merge up to: OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400 |
3 | .\" selective merge up to: OpenSSL 61f805c1 Jan 16 01:01:46 2018 +0800 | 3 | .\" selective merge up to: OpenSSL 61f805c1 Jan 16 01:01:46 2018 +0800 |
4 | .\" | 4 | .\" |
@@ -66,7 +66,7 @@ | |||
66 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 66 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
67 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 67 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
68 | .\" | 68 | .\" |
69 | .Dd $Mdocdate: March 23 2018 $ | 69 | .Dd $Mdocdate: July 9 2018 $ |
70 | .Dt BIO_METH_NEW 3 | 70 | .Dt BIO_METH_NEW 3 |
71 | .Os | 71 | .Os |
72 | .Sh NAME | 72 | .Sh NAME |
@@ -104,56 +104,56 @@ | |||
104 | .Fa "BIO_METHOD *biom" | 104 | .Fa "BIO_METHOD *biom" |
105 | .Fc | 105 | .Fc |
106 | .Ft int | 106 | .Ft int |
107 | .Fn "(*BIO_meth_get_write(BIO_METHOD *biom))" "BIO *" "const char *" int | 107 | .Fn "(*BIO_meth_get_write(const BIO_METHOD *biom))" "BIO *" "const char *" int |
108 | .Ft int | 108 | .Ft int |
109 | .Fo BIO_meth_set_write | 109 | .Fo BIO_meth_set_write |
110 | .Fa "BIO_METHOD *biom" | 110 | .Fa "BIO_METHOD *biom" |
111 | .Fa "int (*write)(BIO *, const char *, int)" | 111 | .Fa "int (*write)(BIO *, const char *, int)" |
112 | .Fc | 112 | .Fc |
113 | .Ft int | 113 | .Ft int |
114 | .Fn "(*BIO_meth_get_read(BIO_METHOD *biom))" "BIO *" "char *" int | 114 | .Fn "(*BIO_meth_get_read(const BIO_METHOD *biom))" "BIO *" "char *" int |
115 | .Ft int | 115 | .Ft int |
116 | .Fo BIO_meth_set_read | 116 | .Fo BIO_meth_set_read |
117 | .Fa "BIO_METHOD *biom" | 117 | .Fa "BIO_METHOD *biom" |
118 | .Fa "int (*read)(BIO *, char *, int)" | 118 | .Fa "int (*read)(BIO *, char *, int)" |
119 | .Fc | 119 | .Fc |
120 | .Ft int | 120 | .Ft int |
121 | .Fn "(*BIO_meth_get_puts(BIO_METHOD *biom))" "BIO *" "const char *" | 121 | .Fn "(*BIO_meth_get_puts(const BIO_METHOD *biom))" "BIO *" "const char *" |
122 | .Ft int | 122 | .Ft int |
123 | .Fo BIO_meth_set_puts | 123 | .Fo BIO_meth_set_puts |
124 | .Fa "BIO_METHOD *biom" | 124 | .Fa "BIO_METHOD *biom" |
125 | .Fa "int (*puts)(BIO *, const char *)" | 125 | .Fa "int (*puts)(BIO *, const char *)" |
126 | .Fc | 126 | .Fc |
127 | .Ft int | 127 | .Ft int |
128 | .Fn "(*BIO_meth_get_gets(BIO_METHOD *biom))" "BIO *" "char *" int | 128 | .Fn "(*BIO_meth_get_gets(const BIO_METHOD *biom))" "BIO *" "char *" int |
129 | .Ft int | 129 | .Ft int |
130 | .Fo BIO_meth_set_gets | 130 | .Fo BIO_meth_set_gets |
131 | .Fa "BIO_METHOD *biom" | 131 | .Fa "BIO_METHOD *biom" |
132 | .Fa "int (*gets)(BIO *, char *, int)" | 132 | .Fa "int (*gets)(BIO *, char *, int)" |
133 | .Fc | 133 | .Fc |
134 | .Ft long | 134 | .Ft long |
135 | .Fn "(*BIO_meth_get_ctrl(BIO_METHOD *biom))" "BIO *" int long "void *" | 135 | .Fn "(*BIO_meth_get_ctrl(const BIO_METHOD *biom))" "BIO *" int long "void *" |
136 | .Ft int | 136 | .Ft int |
137 | .Fo BIO_meth_set_ctrl | 137 | .Fo BIO_meth_set_ctrl |
138 | .Fa "BIO_METHOD *biom" | 138 | .Fa "BIO_METHOD *biom" |
139 | .Fa "long (*ctrl)(BIO *, int, long, void *)" | 139 | .Fa "long (*ctrl)(BIO *, int, long, void *)" |
140 | .Fc | 140 | .Fc |
141 | .Ft int | 141 | .Ft int |
142 | .Fn "(*BIO_meth_get_create(BIO_METHOD *biom))" "BIO *" | 142 | .Fn "(*BIO_meth_get_create(const BIO_METHOD *biom))" "BIO *" |
143 | .Ft int | 143 | .Ft int |
144 | .Fo BIO_meth_set_create | 144 | .Fo BIO_meth_set_create |
145 | .Fa "BIO_METHOD *biom" | 145 | .Fa "BIO_METHOD *biom" |
146 | .Fa "int (*create)(BIO *)" | 146 | .Fa "int (*create)(BIO *)" |
147 | .Fc | 147 | .Fc |
148 | .Ft int | 148 | .Ft int |
149 | .Fn "(*BIO_meth_get_destroy(BIO_METHOD *biom))" "BIO *" | 149 | .Fn "(*BIO_meth_get_destroy(const BIO_METHOD *biom))" "BIO *" |
150 | .Ft int | 150 | .Ft int |
151 | .Fo BIO_meth_set_destroy | 151 | .Fo BIO_meth_set_destroy |
152 | .Fa "BIO_METHOD *biom" | 152 | .Fa "BIO_METHOD *biom" |
153 | .Fa "int (*destroy)(BIO *)" | 153 | .Fa "int (*destroy)(BIO *)" |
154 | .Fc | 154 | .Fc |
155 | .Ft long | 155 | .Ft long |
156 | .Fo "(*BIO_meth_get_callback_ctrl(BIO_METHOD *biom))" | 156 | .Fo "(*BIO_meth_get_callback_ctrl(const BIO_METHOD *biom))" |
157 | .Fa "BIO *" | 157 | .Fa "BIO *" |
158 | .Fa int | 158 | .Fa int |
159 | .Fa "BIO_info_cb *" | 159 | .Fa "BIO_info_cb *" |