Age | Commit message (Collapse) | Author | |
---|---|---|---|
1996-02-04 | sleep() call not needed (from NetBSD). | hannken | |
1996-01-31 | use YP, install nicely | Theo de Raadt | |
1996-01-29 | included paths.h | dm | |
1996-01-29 | Sendmail 8.7.3 from NetBSD | dm | |
1996-01-29 | sendmail 8.9.1 | dm | |
1996-01-29 | sendmail 8.9.1 | dm | |
1996-01-25 | IP filter 3.0.1 | dm | |
1996-01-23 | Use /var/tmp not /usr/tmp for deadletters | etheisen | |
1996-01-23 | Use /var/tmp not /usr/tmp for deadletters | etheisen | |
1996-01-23 | Use /var/tmp not /usr/tmp for deadletters | etheisen | |
1996-01-20 | ypserv_xdr, as generated by rpcgen from yp.x with one major exception. | chuck | |
in xdr_ypresp_key_val() invert the order of loading the key and value (rpcgen says [1] stat, [2] key, [3] value, but the data on the wire comes in as [1] stat, [2] val, [3] key... you can't fix this in yp.x because if you invert the ordr in yp.x not only does it invert the order in ypserv_xdr.c, but it also inverts it in the structure in yp.h which cancels out the inversion in ypserv_xdr.c. i guess this means it is not possible to have a yp.x that descrives the YP protocol properly?). ***NOTE*** this file is also needed because some of the YP functions in libc are broken. For example, compare src/lib/libc/yp/xdryp.c's version of xdr_domainname() to the one in this file generated by rpcgen. Note that xdryp.c calls: if (!xdr_string(xdrs, &objp, YPMAXDOMAIN)) { /* xdryp.c */ while ypserv_xdr.c (generated by rpcgen) calls: if (!xdr_string(xdrs, objp, YPMAXDOMAIN)) { /* rpcgen */ (note the lack of "&" in the second line). Clearly libc is wrong and needs to be fixed (XXX). (Of course changing libc could break other YP stuff, which is why I haven't attemped it... :) ) When libc is fixed, it should be possible to phase out this file, I think. | |||
1996-01-20 | major revision and clean up by Chuck Cranor (i.e. me): | chuck | |
- convert to new yplog() function and clean up log message formats - remove transp args from all _svc functions since you can get it from rqstp->rq_xprt, and rpcgen seems to favor this format - delete all the calls to svc_sendreply() and svc_freeargs() as this can be done in one place in ypserv.c (except for the "all" request which forks off a child process) - avoid possible sprintf() buffer overflows by using snprintf() - use MAXPATHLEN, rather than a hardcoded 255. - eliminate un-needed static variables - avoid possible off by one buffer overflow in tid/prog/port and use snprintf() just to be sure. - random code cleanup and simplification | |||
1996-01-20 | major cleanup by Chuck Cranor | chuck | |
- use queue.h rather than do by hand - fix up logging to use new yplog - fix a few off by one errors - don't double malloc the DBM structure - avoid possible sprintf buffer overflows - random code cleanup | |||
1996-01-20 | Major reworking of ypserv.c by me: this program actually works now!! | chuck | |
highlights: - fixed yp first call (uses ypreq_nokey rather than ypreq_key, despite what yp.x says) - cleanup of looging - removed SVCXPRT args to "local" since you can get them from svc_req and this makes it look more like rpcgen's output - use new yplog() - add call to db init | |||
1996-01-20 | new yp.h, as generated by rpcgen. | chuck | |
1996-01-20 | minor clean up | chuck | |
1996-01-20 | use new yplog function | chuck | |
1996-01-20 | fixed string formatting, minor cleanup | chuck | |
1996-01-20 | main makefile | chuck | |
1996-01-20 | fixes: install Makefile.yp, Makefile.main | chuck | |
1996-01-20 | various changes (from me): | chuck | |
- don't store null in the database - use MAXPATHLEN - avoid sprintf() buffer overflows - minor cleanups | |||
1996-01-20 | Total re-write of yplog by Chuck Cranor | chuck | |
(made it more printf like) | |||
1996-01-20 | fix: adjust private keys to exclude the null in their size | chuck | |
(we don't store nulls in the db [any more]) | |||
1996-01-20 | cleanup: use snprintf() to prevent buffer overflow | chuck | |
1996-01-15 | from netbsd; More descriptive message for printer status. Addresses PR #509 | Theo de Raadt | |
1996-01-15 | from netbsd: | Theo de Raadt | |
Cross-reference fsinfo(8) and mk-amd-map(8), as per PR #1057. From David Brownlee <abs@mono.city.ac.uk>. | |||
1996-01-11 | from netbsd; Fix typo and make some enum. lists more compact | Theo de Raadt | |
(James Jegers; PR#592). | |||
1996-01-11 | login names starting with "t" were trashed; original bug report by | Theo de Raadt | |
<tommy@mdc.tijp.ti.com>. from soda@sra.co.jp; netbsd pr#1926 | |||
1996-01-10 | merge error | Theo de Raadt | |
1996-01-08 | graichen@freebsd.org: fixed -type:=direct mounts in amd | dm | |
1996-01-07 | pass a useful environment to ip-up/ip-down scripts; this is not a | Theo de Raadt | |
security problem different fix than from banshee@gabriella.resort.com; netbsd pr#1866 | |||
1996-01-07 | accept either ffs or ufs for filesystem name | Theo de Raadt | |
1996-01-07 | from beurton@fnet.fr: Darren Reed's IP filter | dm | |
1996-01-06 | Makefile.yp is /var/yp/Makefile | Theo de Raadt | |
1996-01-06 | resurrect Makefile.yp | Theo de Raadt | |
1996-01-05 | sync with 4.4lite2 version, as well as netbsd changes merged by perry. | Theo de Raadt | |
retain openbsd changes too. | |||
1996-01-01 | from netbsd; reference new vnd.4 manpage | Theo de Raadt | |
1995-12-30 | from netbsd: fix typos (pr#1680) from Thorsten Frueauf | Theo de Raadt | |
1995-12-28 | Leave DTR down for one second on exit so modem may catch the DTR to false | hannken | |
transition. (from hannken@eis.cs.tu-bs.de) | |||
1995-12-24 | repair an obvious cpp syntax error | Theo de Raadt | |
1995-12-19 | from netbsd: tv_sec isn't a time_t, but a long. this causes some problems.. | Theo de Raadt | |
1995-12-18 | update from netbsd | Theo de Raadt | |
1995-12-17 | config.old does not exist | Theo de Raadt | |
1995-12-15 | for orphaned devices, print the parent that cannot be found; from ↵ | Theo de Raadt | |
banshee@gabriella.resort.com; netbsd pr#1800 | |||
1995-12-15 | -s option prevents opening of UDP port; from perry@piermont.com; netbsd pr#1761 | Theo de Raadt | |
1995-12-15 | rearrange to make it compile; from azcb0@juts.ccc.amdahl.com, netbsd pr#1838 | Theo de Raadt | |
1995-12-14 | from netbsd: | Theo de Raadt | |
traceroute waits 5 seconds, not 3 seconds, before printing a * | |||
1995-12-14 | from netbsd: add () in an expression even though it is not really needed | Theo de Raadt | |
1995-12-14 | whoops, add this | Theo de Raadt | |
1995-12-14 | from netbsd; update to mrouted 3.8 | Theo de Raadt | |