Skip to content

Commit 2a5f907

Browse files
csutherlRich Salz
authored andcommitted
Resolve over command syntax error which causes 'make install' to fail
Reviewed-by: Matt Caswell <[email protected]> Reviewed-by: Rich Salz <[email protected]> (Merged from openssl#1312)
1 parent 0a52285 commit 2a5f907

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

doc/crypto/BIO_set_callback.pod

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,24 @@ BIO_callback_fn() is the type of the callback function. The meaning of each
4040
argument is described below:
4141

4242
=over
43+
44+
=item B<b>
45+
4346
The BIO the callback is attached to is passed in B<b>.
4447

48+
=item B<oper>
49+
4550
B<oper> is set to the operation being performed. For some operations
4651
the callback is called twice, once before and once after the actual
4752
operation, the latter case has B<oper> or'ed with BIO_CB_RETURN.
4853

54+
=item B<argp> B<argi> B<argl>
55+
4956
The meaning of the arguments B<argp>, B<argi> and B<argl> depends on
5057
the value of B<oper>, that is the operation being performed.
5158

59+
=item B<ret>
60+
5261
B<ret> is the return value that would be returned to the
5362
application if no callback were present. The actual value returned
5463
is the return value of the callback itself. In the case of callbacks

0 commit comments

Comments
 (0)