diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.html | 4 | ||||
-rw-r--r-- | doc/libs6net/ident.html | 6 | ||||
-rw-r--r-- | doc/upgrade.html | 3 |
3 files changed, 7 insertions, 6 deletions
diff --git a/doc/index.html b/doc/index.html index 48fed00..a0d7d6c 100644 --- a/doc/index.html +++ b/doc/index.html @@ -57,9 +57,9 @@ requirement if you link against the shared version of the s6-dns libraries. </li> <li> If you want to build the secure communication tools: <ul> - <li> Either <a href="http://libressl.org/">LibreSSL</a> version 2.4.4 + <li> Either <a href="http://libressl.org/">LibreSSL</a> version 2.4.5 or later </li> - <li> Or <a href="http://bearssl.org/">BearSSL</a> version 0.2 + <li> Or <a href="http://bearssl.org/">BearSSL</a> version 0.3 or later. <strong>This is experimental.</strong> </li> </ul> The chosen library is a build-time requirement, and also a run-time requirement if you link against its shared version. </li> diff --git a/doc/libs6net/ident.html b/doc/libs6net/ident.html index f058370..fad581f 100644 --- a/doc/libs6net/ident.html +++ b/doc/libs6net/ident.html @@ -47,7 +47,7 @@ any kind of authentication or secure operation. <h3> Main interface </h3> <p> -<code> int s6net_ident_client (char *s, unsigned int max, ip46_t const *remoteip, uint16 remoteport, ip46_t const *localip, uint16 localport, +<code> ssize_t s6net_ident_client (char *s, size_t max, ip46_t const *remoteip, uint16_t remoteport, ip46_t const *localip, uint16_t localport, tain_t const *deadline, tain_t *stamp) </code> </p> @@ -97,7 +97,7 @@ from the server by *<em>deadline</em>, then the call is aborted and returns <h3> Low-level functions </h3> <p> -<code> int s6net_ident_reply_get (char *s, ip46_t const *ra, uint16 rp, ip46_t const *la, uint16 lp, +<code> ssize_t s6net_ident_reply_get (char *s, ip46_t const *ra, uint16_t rp, ip46_t const *la, uint16_t lp, tain_t const *deadline, tain_t *stamp) </code> </p> @@ -110,7 +110,7 @@ Returns -1 if an error occurs, or the number of bytes written into <em>s</em>. </p> <p> -<code> int s6net_ident_reply_parse (char const *s, uint16 rp, uint16 lp) </code> +<code> ssize_t s6net_ident_reply_parse (char const *s, uint16_t rp, uint16_t lp) </code> </p> <p> diff --git a/doc/upgrade.html b/doc/upgrade.html index 1cbd9b7..22c86e1 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -21,7 +21,8 @@ <h2> in 2.3.0.0 </h2> <ul> - <li> BearSSL dependency bumped to 0.2. </li> + <li> LibreSSL dependency bumped to 2.4.5. </li> + <li> BearSSL dependency bumped to 0.3. </li> <li> skalibs dependency bumped to 2.5.0.0. </li> <li> execline dependency bumped to 2.3.0.0. </li> <li> s6 dependency bumped to 2.5.0.0. </li> |