diff options
Diffstat (limited to 'src/lib/libcrypto/man/BIO_set_callback.3')
-rw-r--r-- | src/lib/libcrypto/man/BIO_set_callback.3 | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/lib/libcrypto/man/BIO_set_callback.3 b/src/lib/libcrypto/man/BIO_set_callback.3 index 68ca2780f8..62b7b3773b 100644 --- a/src/lib/libcrypto/man/BIO_set_callback.3 +++ b/src/lib/libcrypto/man/BIO_set_callback.3 | |||
@@ -1,6 +1,6 @@ | |||
1 | .\" $OpenBSD: BIO_set_callback.3,v 1.2 2016/11/06 15:52:50 jmc Exp $ | 1 | .\" $OpenBSD: BIO_set_callback.3,v 1.3 2016/11/07 15:52:47 jmc Exp $ |
2 | .\" | 2 | .\" |
3 | .Dd $Mdocdate: November 6 2016 $ | 3 | .Dd $Mdocdate: November 7 2016 $ |
4 | .Dt BIO_SET_CALLBACK 3 | 4 | .Dt BIO_SET_CALLBACK 3 |
5 | .Os | 5 | .Os |
6 | .Sh NAME | 6 | .Sh NAME |
@@ -38,7 +38,7 @@ | |||
38 | .Fn BIO_set_callback | 38 | .Fn BIO_set_callback |
39 | and | 39 | and |
40 | .Fn BIO_get_callback | 40 | .Fn BIO_get_callback |
41 | set and retrieve the BIO callback, they are both macros. | 41 | set and retrieve the BIO callback; they are both macros. |
42 | The callback is called during most high level BIO operations. | 42 | The callback is called during most high level BIO operations. |
43 | It can be used for debugging purposes to trace operations on a BIO | 43 | It can be used for debugging purposes to trace operations on a BIO |
44 | or to modify its operation. | 44 | or to modify its operation. |
@@ -77,8 +77,8 @@ The meaning of the arguments | |||
77 | and | 77 | and |
78 | .Fa argl | 78 | .Fa argl |
79 | depends on the value of | 79 | depends on the value of |
80 | .Fa oper , | 80 | .Fa oper |
81 | that is the operation being performed. | 81 | (i.e. the operation being performed). |
82 | .Pp | 82 | .Pp |
83 | .Fa retvalue | 83 | .Fa retvalue |
84 | is the return value that would be returned to the application | 84 | is the return value that would be returned to the application |
@@ -127,5 +127,6 @@ after. | |||
127 | .Sh EXAMPLES | 127 | .Sh EXAMPLES |
128 | The | 128 | The |
129 | .Fn BIO_debug_callback | 129 | .Fn BIO_debug_callback |
130 | function is a good example, its source is in the file | 130 | function is a good example. |
131 | Its source is in the file | ||
131 | .Pa crypto/bio/bio_cb.c . | 132 | .Pa crypto/bio/bio_cb.c . |