diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.html | 5 | ||||
-rw-r--r-- | doc/libs6net/ident.html | 3 | ||||
-rw-r--r-- | doc/minidentd.html | 84 | ||||
-rw-r--r-- | doc/s6-ident-client.html | 2 | ||||
-rw-r--r-- | doc/upgrade.html | 8 |
5 files changed, 12 insertions, 90 deletions
diff --git a/doc/index.html b/doc/index.html index be03d73..9da2ca0 100644 --- a/doc/index.html +++ b/doc/index.html @@ -55,7 +55,7 @@ as extensions to the s6 ecosystem. <li> A POSIX-compliant system with a standard C development environment </li> <li> GNU make, version 3.81 or later </li> <li> <a href="//skarnet.org/software/skalibs/">skalibs</a> version -2.10.0.3 or later. It's a build-time requirement. It's also a run-time +2.11.0.0 or later. It's a build-time requirement. It's also a run-time requirement if you link against the shared version of the skalibs library. </li> <li> (Optional, but recommended) <a href="//skarnet.org/software/execline/">execline</a> version @@ -91,7 +91,7 @@ run-time requirement if you link against its shared version. </li> <ul> <li> The current released version of s6-networking is -<a href="s6-networking-2.4.2.0.tar.gz">2.4.2.0</a>. </li> +<a href="s6-networking-2.5.0.0.tar.gz">2.5.0.0</a>. </li> <li> Alternatively, you can checkout a copy of the <a href="//git.skarnet.org/cgi-bin/cgit.cgi/s6-networking/">s6-networking git repository</a>: @@ -175,7 +175,6 @@ relevant page. <ul> <li><a href="s6-ident-client.html">The <tt>s6-ident-client</tt> program</a></li> -<li><a href="minidentd.html">The <tt>minidentd</tt> program</a></li> </ul> <h4> Miscellaneous utilities </h4> diff --git a/doc/libs6net/ident.html b/doc/libs6net/ident.html index 0b6a9c5..c8b4b2a 100644 --- a/doc/libs6net/ident.html +++ b/doc/libs6net/ident.html @@ -32,8 +32,7 @@ and implemented in the <tt>libs6net.a</tt> or <tt>libs6net.so</tt> library. <p> Please note that this protocol is of historical interest exclusively; -this client, as well as the <a href="../minidentd.html">minidentd</a> -server, is only provided for convenience and interoperability with +this client is only provided for convenience and interoperability with legacy systems. The IDENT protocol absolutely cannot be relied on for any kind of authentication or secure operation. </p> diff --git a/doc/minidentd.html b/doc/minidentd.html deleted file mode 100644 index d1fb546..0000000 --- a/doc/minidentd.html +++ /dev/null @@ -1,84 +0,0 @@ -<html> - <head> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <meta http-equiv="Content-Language" content="en" /> - <title>s6-networking: the minidentd program</title> - <meta name="Description" content="s6-networking: the minidentd program" /> - <meta name="Keywords" content="s6-networking minidentd identd ident server rfc 1413" /> - <!-- <link rel="stylesheet" type="text/css" href="//skarnet.org/default.css" /> --> - </head> -<body> - -<p> -<a href="index.html">s6-networking</a><br /> -<a href="//skarnet.org/software/">Software</a><br /> -<a href="//skarnet.org/">skarnet.org</a> -</p> - -<h1> The <tt>minidentd</tt> program </h1> - -<p> -<tt>minidentd</tt> is a small -<a href="https://cr.yp.to/proto/ucspi.txt">UCSPI</a> server application -that answers IDENT requests. -</p> - -<h2> Interface </h2> - -<pre> - minidentd [ -v ] [ -n | -i | -r ] [ -y <em>file</em> ] [ -t <em>timeout</em> ] -</pre> - -<p> -<tt>minidentd</tt> reads a series of IDENT requests on stdin and answers -them on stdout. It logs what it's doing on stderr. The environment -variables <em>x</em>LOCALIP and <em>x</em>REMOTEIP, where <em>x</em> is -the value of the PROTO environment variable, must contain the IDENT -server address and the IDENT client address, respectively. -</p> - -<p> - minidentd exits 0 on success, 100 on a usage error and 111 on a system -call failure. -</p> - -<p> - minidentd does not contact the network directly. It's meant to -run under a super-server like -<a href="s6-tcpserver.html">s6-tcpserver</a>. minidentd will -work with IPv4 as well as IPv6. -</p> - -<h2> Options </h2> - -<ul> - <li> <tt>-v</tt> : verbose mode. Log queries and replies. </li> - <li> <tt>-n</tt> : send ERROR : HIDDEN-USER replies if -the user has a <tt>.ident</tt> file in their home directory. </li> - <li> <tt>-i</tt> : user-defined answers. The first 14 chars of the -user's <tt>.ident</tt> file, up to EOF or newline, are used instead of -the user name. If the file exists and is empty, send -ERROR : HIDDEN-USER. If it doesn't exist, send a normal reply. </li> - <li> <tt>-r</tt> : send random replies. </li> - <li> <tt>-y <em>file</em></tt> : valid with <tt>-n</tt> or <tt>-i</tt>. -Use <em>file</em> instead of <tt>.ident</tt>. </li> - <li> <tt>-t <em>timeout</em></tt> : close connection after -<em>timeout</em> milliseconds without a client request. </li> -</ul> - -<h2> Notes </h2> - -<ul> - <li> minidentd works only under Linux (2.2 or later); -on other systems, it will compile and run, but report an error for every -request. -The problem is that <em>there is no portable Unix way</em> of listing active -outgoing TCP connections with the relevant uids. On Linux, minidentd parses -the <tt>/proc/net/tcp</tt> or <tt>/proc/net/tcp6</tt> virtual file. Other -systems have their own way of doing this, if you want your system to be -supported by minidentd, please contact the author. </li> -</ul> - -</body> -</html> diff --git a/doc/s6-ident-client.html b/doc/s6-ident-client.html index ed44479..9a7d8be 100644 --- a/doc/s6-ident-client.html +++ b/doc/s6-ident-client.html @@ -5,7 +5,7 @@ <meta http-equiv="Content-Language" content="en" /> <title>s6-networking: the s6-ident-client program</title> <meta name="Description" content="s6-networking: the s6-ident-client program" /> - <meta name="Keywords" content="s6-networking minidentd identd ident client rfc 1413" /> + <meta name="Keywords" content="s6-networking identd ident client rfc 1413" /> <!-- <link rel="stylesheet" type="text/css" href="//skarnet.org/default.css" /> --> </head> <body> diff --git a/doc/upgrade.html b/doc/upgrade.html index f174e74..af9f7e6 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -18,6 +18,14 @@ <h1> What has changed in s6-networking </h1> +<h2> in 2.5.0.0 </h2> + +<ul> + <li> <a href="//skarnet.org/software/skalibs/">skalibs</a> +dependency bumped to 2.11.0.0 </li> + <li> The obsolete <tt>minidentd</tt> program has been removed. </li> +</ul> + <h2> in 2.4.2.0 </h2> <ul> |