Skip to content

Commit

Permalink
fixup! Update the OpenSSL Guide tutorials with changes to the demos
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcaswell committed Oct 31, 2023
1 parent d1078f0 commit 95c67d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion doc/man7/ossl-guide-quic-client-non-block.pod
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,8 @@ data on a retry. An optional mode does exist
the buffer being written to change from one retry to the next. However, in this
case, you must still retry exactly the same data - even though the buffer that
contains that data may change location. See L<SSL_CTX_set_mode(3)> for further
details. As in the TLS tutorials we write the request in three chunks.
details. As in the TLS tutorials (L<ossl-guide-tls-client-block(7)>) we write
the request in three chunks.

/* Write an HTTP GET request to the peer */
while (!SSL_write_ex(ssl, request_start, strlen(request_start), &written)) {
Expand Down
3 changes: 2 additions & 1 deletion doc/man7/ossl-guide-tls-client-non-block.pod
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,8 @@ retry. An optional mode does exist (B<SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER>)
which will configure OpenSSL to allow the buffer being written to change from
one retry to the next. However, in this case, you must still retry exactly the
same data - even though the buffer that contains that data may change location.
See L<SSL_CTX_set_mode(3)> for further details. As before we write the request
See L<SSL_CTX_set_mode(3)> for further details. As in the TLS client
blocking tutorial (L<ossl-guide-tls-client-block(7)>) we write the request
in three chunks.

/* Write an HTTP GET request to the peer */
Expand Down

0 comments on commit 95c67d7

Please sign in to comment.