summaryrefslogtreecommitdiff
path: root/doc/tex/translayer.tex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tex/translayer.tex')
-rw-r--r--doc/tex/translayer.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tex/translayer.tex b/doc/tex/translayer.tex
index 30f6d9dd8d..cc74d5db07 100644
--- a/doc/tex/translayer.tex
+++ b/doc/tex/translayer.tex
@@ -2,8 +2,8 @@
\par
\gnutls can be used above any reliable transport layer. To do this you will only
need to set up the
-\hyperref{gnutls\_transport\_set\_push\_function()}{gnutls\_transport\_set\_push\_function() (see Section }{)}{gnutls_transport_set_push_function} and
-\hyperref{gnutls\_transport\_set\_pull\_function()}{gnutls\_transport\_set\_pull\_function() (see Section }{)}{gnutls_transport_set_pull_function}
+\hyperref{gnutls\_transport\_set\_push\_func()}{gnutls\_transport\_set\_push\_func() (see Section }{)}{gnutls_transport_set_push_func} and
+\hyperref{gnutls\_transport\_set\_pull\_func()}{gnutls\_transport\_set\_pull\_func() (see Section }{)}{gnutls_transport_set_pull_func}
functions. These functions will then be used by gnutls in order to send and receive data.
The functions specified should return -1 on error and should set errno appropriately.
\gnutls supports EINTR and EAGAIN errno values. These values are
@@ -13,8 +13,8 @@ will be returned to the caller of the gnutls function. \gnutls functions
can be resumed (called again), if any of these values is returned.
\par
By default, if none of the above functions are called, gnutls will use
-the berkeley sockets functions recv() and send(). In this case
-gnutls will use some hacks in order for select() to work, thus
+the berkeley sockets functions \emph{recv()} and \emph{send()}. In this case
+gnutls will use some hacks in order for \emph{select()} to work, thus
making easy to add \tls support to existing servers.