summaryrefslogtreecommitdiff
path: root/lib/libwrap
AgeCommit message (Collapse)Author
2003-05-24- typos;Jason McIntyre
- new sentence, new line; - whitespace at EOL
2003-05-15NetBSD PR 15025: libwrap hangs in an infinite loop when a host access linePaul Janzen
is > 2048 characters long. ok millert a long time ago.
2003-04-19- kill unused varAnil Madhavapeddy
- sscanf format string should scan for u_short not u_int - some missing includes - convert u_short -> in_port_t (from millert) ok millert@
2003-04-05sprintf -> snprintfThierry Deval
ok tedu@, krw@; hints deraadt@, millert@
2003-04-05strcpy/strcat -> strlcpy/strlcatThierry Deval
ok tedu@, hints by deraadt@ and millert@
2003-04-03rfc -> RFCJason McIntyre
implenented -> implemented
2003-03-22.Nd shouldn't end with a periodDavid Krause
ok jmc@
2003-03-06date should be written formally: .Dd Month day, yearDavid Krause
ok henning@ jmc@
2003-01-18more typos; jmc@prioris.mini.pw.edu.plTheo de Raadt
2002-12-31If we're going to replace strtok() with strtok_r(), and the caller of theJun-ichiro itojun Hagino
latter is invoked recursively, use static (instead of automatic) storage for the "last" pointer so that we remember where we're up to ... Fixes bug with hosts.deny rules such as "rpcbind: ALL EXCEPT some.domain". netbsd lib/libwrap/hosts_access.c 1.17
2002-12-03Crank all library major numbers. Needed due to the fact that weTodd C. Miller
now build libraries with propolice enabled. Without this, existing binaries (such as ports/packages) that link with any system library other than libc will fail with an undefined symbol of "___guard" (__guard on ELF). Pointed out by markus@ and discussed with deraadt@
2002-06-22remove BUGS section; this library uses strtok_r(3) now.Federico G. Schwindt
2002-06-22use strtok_r() instead of strtok(); millert okTheo de Raadt
2002-06-19use more snprintfTheo de Raadt
2002-06-07support scoped IPv6 address.Jun-ichiro itojun Hagino
no visible API change, old config files work just fine. now you can use expressions like "ALL: [fe80::%lo0/64]". theo ok
2002-06-07func prototypeJun-ichiro itojun Hagino
2002-06-07more strict prototypeJun-ichiro itojun Hagino
2002-06-07snprintfJun-ichiro itojun Hagino
2002-06-03compatiblity -> compatibilityTheo de Raadt
decriptor -> descriptor authentciated -> authenticated transmition -> transmission
2002-05-27unsigned vs unsigned intTheo de Raadt
2002-05-26pid_t cleanupTheo de Raadt
2002-05-01Character 0 is called NUL, not nul.Todd C. Miller
2002-05-01YP, not NISTodd C. Miller
2002-05-01o) start new sentence on a new line;Mike Pechkin
o) always close .Bl tags; o) fix usage of .Xr; millert@ ok
2002-04-30Initial cleanup:Mike Pechkin
o) remove extra space in the end of line; o) remove extra blank lines in the end of file; o) remove .Pp before .Ss; o) CAVEAT -> CAVEATS; o) fix usage of .Fa; o) <blank-line> -> .Pp; o) wrap long lines; millert@ ok
2002-04-25Protect IPv6 code with #ifdef INET6Mike Pechkin
millert@ ok
2002-02-24wrong error messageTheo de Raadt
2002-02-19We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.Todd C. Miller
2002-02-16Part one of userland __P removal. Done with a simple regexp with some minor ↵Todd C. Miller
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
2002-01-02more pid_t useTheo de Raadt
2001-12-13atoi->strtoulBob Beck
2001-11-17fix a commentTheo de Raadt
2001-11-17volatile sig_atomic_tTheo de Raadt
2001-11-07avoid strcpy and sprintfTheo de Raadt
2001-11-07crank strings to 256 so they can hold a full hostnameTheo de Raadt
2001-11-07assume buffer is BUFSIZ long, and handle it so; millert okTheo de Raadt
2001-09-06Initial idea from aaron@: Last char of .Xr group in SEE ALSO section shouldMike Pechkin
be a single digit. Powered by mantoya@. millert@ ok.
2001-08-06o) We always close .Bl and .Bd tags;Mike Pechkin
o) .Sh AUTHOR -> .Sh AUTHORS; o) We don't like .Pp before/after .Sh; o) We don't like .Pp before/after .Rs/.Re; o) NetBSD -> .Nx; o) OpenBSD -> .Ox; millert@ ok
2001-06-04add the file here too, to avoid confusionTheo de Raadt
2001-03-28C++ wrapping; dmcmahill@netbsd.orgTheo de Raadt
2001-02-16Rewrite rfc931.c to eliminate problematic setjmp/longjmp and stdio usageBob Beck
on sockets. Adds new documented rfc1413 routine to do client side ident stuff. leaves compatible rfc931() routine in lib which calls new routine, incremenent shlib minor.
2001-02-15fix change from previous commit that didn't get the ports correctlyBob Beck
out of sockaddr_inX's for client side ident.
2000-10-14put hosts.allow and hosts.deny in as Nm entriesTheo de Raadt
2000-10-14put tcp wrapper into Nd lineTheo de Raadt
2000-10-14tcp wrapper support for IPv6. from netbsd.Jun-ichiro itojun Hagino
TODO: scoped address support may need more consideration (we are taking safer side now - rejects too much).
2000-03-14Suffix "i.e." and "e.g." with a comma. Just another really picky man pageAaron Campbell
commit, as we want our documentation to be as consistently formatted as possible (it's getting there :-)).
2000-02-01no need to extern int errno if errno.h is includedTheo de Raadt
1999-07-21Add missing hosts_ctl() prototype.Oleg Safiullin
1999-07-09- remove all trailing whitespaceAaron Campbell
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
1999-06-06add dot_quad_addr_new(); which can handle 255.255.255.255 addressesTheo de Raadt