#
e1c77598 |
| 23-Jul-1999 |
Brian Feldman <green@FreeBSD.org> |
Ahem. Put things back a bit. I declare variables in the scope they're used! I don't declare every variable at the top of a function because that wastes stack space. I've clarified the error a bit (fo
Ahem. Put things back a bit. I declare variables in the scope they're used! I don't declare every variable at the top of a function because that wastes stack space. I've clarified the error a bit (for if asprintf() filas.)
show more ...
|
#
56658bf1 |
| 23-Jul-1999 |
Sheldon Hearn <sheldonh@FreeBSD.org> |
Style cleanups for iderror() and ident_stream(). Looks like c++ hang-over. ;-)
|
#
3d1171b5 |
| 23-Jul-1999 |
Sheldon Hearn <sheldonh@FreeBSD.org> |
Fix auth -t argument handling. It was broken for the "sec.usec" case. Add a warning for bogus -t arguments for the (debug) case.
|
#
e26aedfb |
| 23-Jul-1999 |
Brian Feldman <green@FreeBSD.org> |
Fixed a braino: lack of spaces in sscanf caused ident parsing to fail. Sorry, guys.
|
#
202a2323 |
| 22-Jul-1999 |
Brian Feldman <green@FreeBSD.org> |
"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.
|
#
8391600e |
| 22-Jul-1999 |
Brian Feldman <green@FreeBSD.org> |
This commit encompasses the following changes to inetd: 1. Cleanups of ident_stream. "Evil" stdio is less used. 2. The BSD Copyright was added to the top of builtins.c. 3. As suggested, a timeout
This commit encompasses the following changes to inetd: 1. Cleanups of ident_stream. "Evil" stdio is less used. 2. The BSD Copyright was added to the top of builtins.c. 3. As suggested, a timeout is now implemented in the ident service. It defaults to 10 seconds. If enough people want it, I'll make it configurable.
Suggested by: msmith
show more ...
|
#
5ff3afce |
| 22-Jul-1999 |
Sheldon Hearn <sheldonh@FreeBSD.org> |
Move code for all builtin services from inetd.c to builtins.c, including the Green Piece. :-)
In future, new builtin services are less likely to need to touch the already tangled inetd.c .
|