summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjmc <>2016-09-04 16:37:18 +0000
committerjmc <>2016-09-04 16:37:18 +0000
commitc36bfe742eb42da794e5cdca5b262901616b3009 (patch)
tree942d283d576373ee980243fd16eb2b1dfc3449ce /src
parentbc2dfc53533642b2dec897c8286346b8a56bb8aa (diff)
downloadopenbsd-c36bfe742eb42da794e5cdca5b262901616b3009.tar.gz
openbsd-c36bfe742eb42da794e5cdca5b262901616b3009.tar.bz2
openbsd-c36bfe742eb42da794e5cdca5b262901616b3009.zip
minor tweaks;
Diffstat (limited to 'src')
-rw-r--r--src/lib/libtls/tls_init.314
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libtls/tls_init.3 b/src/lib/libtls/tls_init.3
index 9ce9bc3462..90133a20ce 100644
--- a/src/lib/libtls/tls_init.3
+++ b/src/lib/libtls/tls_init.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: tls_init.3,v 1.70 2016/09/04 12:48:50 jsing Exp $ 1.\" $OpenBSD: tls_init.3,v 1.71 2016/09/04 16:37:18 jmc Exp $
2.\" 2.\"
3.\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> 3.\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org>
4.\" 4.\"
@@ -255,9 +255,9 @@ file descriptors by calling
255.Fn tls_connect_fds . 255.Fn tls_connect_fds .
256Calling 256Calling
257.Fn tls_connect_cbs 257.Fn tls_connect_cbs
258allows specifying read and write callback functions to handle data transfer. 258allows read and write callback functions to handle data transfers.
259The specified cb_arg parameter is passed back to the functions, and can contain 259The specified cb_arg parameter is passed back to the functions,
260a pointer to any caller-specified data. 260and can contain a pointer to any caller-specified data.
261.Pp 261.Pp
262A server can accept a new client connection by calling 262A server can accept a new client connection by calling
263.Fn tls_accept_socket 263.Fn tls_accept_socket
@@ -267,9 +267,9 @@ file descriptors by calling
267.Fn tls_accept_fds . 267.Fn tls_accept_fds .
268Calling 268Calling
269.Fn tls_accept_cbs 269.Fn tls_accept_cbs
270allows specifying read and write callback functions to handle data transfer. 270allows read and write callback functions to handle data transfers.
271The specified cb_arg parameter is passed back to the functions, and can contain 271The specified cb_arg parameter is passed back to the functions,
272a pointer to any caller-specified data. 272and can contain a pointer to any caller-specified data.
273.Pp 273.Pp
274The TLS handshake can be completed by calling 274The TLS handshake can be completed by calling
275.Fn tls_handshake . 275.Fn tls_handshake .