"knobs are cheap". Here's a -t timeout option for the internal ident

service. It takes a number (w/ or w/out .usec) as an argument.
This commit is contained in:
Brian Feldman 1999-07-22 21:42:49 +00:00
parent 8391600e00
commit 202a23238e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=49005

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id$
* $Id: builtins.c,v 1.2 1999/07/22 21:11:40 green Exp $
*
*/
@ -319,7 +319,7 @@ ident_stream(s, sep) /* Ident service */
for (av = sep->se_argv; *av; av++)
argc++;
if (argc) {
while ((c = getopt(argc, sep->se_argv, "fro:")) != -1)
while ((c = getopt(argc, sep->se_argv, "fro:t:")) != -1)
switch (c) {
case 'f':
fflag = 1;
@ -330,6 +330,22 @@ ident_stream(s, sep) /* Ident service */
case 'o':
osname = optarg;
break;
case 't':
do {
int sec, usec;
switch (sscanf(optarg, "%d.%d", &sec,
&usec)) {
case 1:
tv.tv_sec = sec;
break;
case 2:
tv.tv_usec = usec;
break;
default:
break;
}
} while (0);
default:
break;
}