summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add better quote elimination (and fix a bug).jkh1997-02-143-21/+24
|
* o Try to be more aggressive about reading in old configuration datajkh1997-02-1415-180/+348
| | | | | | | | | | | | | | | | | so that we're more useful in multi-user mode. This is still not 100%, but it pulls in a lot more than it used to. Some of the "composite" variables in /etc/sysconfig are going to take more work. o Always write /etc/resolv.conf and /etc/hosts if it makes sense to do so. o Reset media properly when reselecting. Longstanding bogon. o Pull SIGPIPE handling out of package.c; I'm actually hoping to handle this differently shortly. o Fix bug where cancel in TCP setup dialog still checked data fields. I think this closes a PR, but I will have to go look.
* Modified the display() function to recognize when the output it going to ajmg1997-02-141-14/+18
| | | | | | | | | file. When it is don't do the percentage update, but still display the file size and rate. Closes PR#2725 Reviewed by: wollman
* Fix the mechanism for choosing wehether to save the slow-start thresholdwollman1997-02-147-469/+250
| | | | | | | | | | in the route. This allows us to remove the unconditional setting of the pipesize in the route, which should mean that SO_SNDBUF and SO_RCVBUF should actually work again. While we're at it: - Convert udp_usrreq from `mondo switch statement from Hell' to new-style. - Delete old TCP mondo switch statement from Hell, which had previously been diked out.
* Send RTM_IFINFO messages whenever promiscuous and all-multicastwollman1997-02-141-2/+9
| | | | modes are enabled or disabled.
* Replace my EOF fix with better one from sendmail-bugs discussionache1997-02-141-2/+1
| | | | Should go into 2.2
* Moved definitions of PIC macros from SYS.h to DEFS.h so that SYS.hbde1997-02-143-41/+21
| | | | | | | | doesn't need to be included in files that have nothing to do with syscalls. Added missing `.text' to START_ENTRY so that ENTRY() works when invoked in the data section.
* Style fixes.mpp1997-02-143-32/+28
|
* Reviewed by:hanai1997-02-142-0/+5
| | | | | Submitted by: Obtained from:
* Xref boot(9).mpp1997-02-141-1/+2
|
* Style fix.mpp1997-02-141-1/+4
|
* Add boot(9) Obtained from NetBSD w/modifications by me.mpp1997-02-142-1/+102
|
* Add MD5(9).mpp1997-02-142-1/+75
| | | | Obtained from: OpenBSD
* Oops. I accidently removed fpa.4 from the install list (it ismpp1997-02-141-1/+1
| | | | | | a pending change...grr) Submitted by: bde
* In the "cleanobj" target, always remove the old-style "${.CURDIR}/obj"jdp1997-02-141-2/+0
| | | | | | | links if they exist. The old-style links confused make and caused problems when upgrading from a 2.1.5 or 2.1.6 system. I will merge this into -2.2.
* some stylistic changes... "you name here" and "you name" to "your name"jmg1997-02-143-6/+6
| | | | 2.2 Candidate
* Changed timeout for requesting sense from 100ms to 1 second.dg1997-02-141-2/+1
| | | | Submitted by: gibbs
* It's not an error to call configResolv() early.jkh1997-02-143-9/+3
|
* Back out clearerr fix after discussion in sendmail-bugs,ache1997-02-141-2/+1
| | | | it gains nothing
* Put back @owner/@group/@mode behavior I took out way back when.jkh1997-02-141-1/+1
| | | | Submitted-By: pst
* Fix a typo in the .s.o rule: asssembler -> assemblerjmz1997-02-141-1/+1
|
* Bye Bye.wosch1997-02-143-390/+0
|
* Merge 1.209 -> 1.210 changes.max1997-02-131-2/+2
|
* Changed #include order to match better order in 2.2.bde1997-02-132-2/+2
|
* Merge 1.61 -> 1.62 changes.max1997-02-131-1/+1
|
* Typo fix.max1997-02-131-1/+1
|
* Merge 1.4 -> 1.5 changes.max1997-02-131-14/+36
| | | | Submitted by: iwasaki@jp.freebsd.org
* Merge 1.206 -> 1.209 changes.max1997-02-131-5/+7
|
* clearerr() clears both EOF and error flags, so do it only forache1997-02-131-1/+2
| | | | | | | error and not for EOF or loop test becomes while(1) Should go into 2.2 Submitted by: Gregory Neil Shapiro <gshapiro@WPI.EDU>
* Do what i usually forget to do:joerg1997-02-132-1/+5
| | | | Add John-Mark Gurney (jmg@FreeBSD.org) to the list of committers.
* Fix a problem with patch in that is will always default, even when thejmg1997-02-136-16/+37
| | | | | | | | | | | | | controlling terminal is closed. Now the function ask() will return 1 when th input is known to come from a file or terminal, or it will return 0 when ther was a read error. Modified the question "Skip patch?" so that on an error from ask it will skip the patch instead of looping. Closes PR#777 2.2 candidate
* Provide PRC_IFDOWN and PRC_IFUP support for IP. Now, when an interfacewollman1997-02-136-5/+117
| | | | | | | | is administratively downed, all routes to that interface (including the interface route itself) which are not static will be deleted. When it comes back up, and addresses remaining will have their interface routes re-added. This solves the problem where, for example, an Ethernet interface is downed by traffic continues to flow by way of ARP entries.
* Provide an alternative mbuf cluster allocator which permits use ofwollman1997-02-131-1/+46
| | | | | | | clusters greater than one page in length by calling contigmalloc1(). This uses a helper process `mclalloc' to do the allocation if the system runs out at interrupt time to avoid calling contigmalloc at high spl. It is not yet clear to me whether this works.
* Provide an alternative interface to contigmalloc() which allows a specificwollman1997-02-132-4/+22
| | | | | map to be used when allocating the kernel va (e.g., mb_map). The VM gurus may want to look this over.
* Actually allow the -R flag.guido1997-02-131-1/+1
|
* Xref the new vn(4) man page.mpp1997-02-131-1/+2
|
* Add sl(4) and ppp(4).mpp1997-02-133-2/+137
| | | | Obtained from: NetBSD
* Synchronize with sys/i386/isa/syscons.c revision 1.201.kato1997-02-131-1/+1
|
* Synchronize with sys/i386/boot/biosboot/boot.c revision 1.62.kato1997-02-131-16/+48
|
* Add vn(4) to document vn pseudo-devices.mpp1997-02-132-2/+92
| | | | Obtained from: NetBSD
* For large values of sb_max or MCLBYTES, it was possible for the expressionwollman1997-02-132-4/+2
| | | | | | | sb_max * MCLBYTES / (MSIZE + MCLBYTES) used in sbreserve() to overflow, causing all socket creation attempts to fail. Force the calculation to use u_quad_t's, which makes overflow less likely.
* Add motd(5).mpp1997-02-132-2/+42
| | | | Obtained from: NetBSD
* Typo fix.mpp1997-02-131-1/+1
| | | | Obtained from: NetBSD
* Add psignal(9).mpp1997-02-132-2/+142
| | | | Obtained from: NetBSD
* Add panic(9).mpp1997-02-132-2/+68
| | | | Obtained from: NetBSD
* Under some circumstanes sendmail can loop forever collecting input.ache1997-02-131-0/+1
| | | | | | Fix uninitialized character to prevent it. Should go into 2.2
* Add Jeffrey Wheat and Paulo Menezes for their ports.tg1997-02-131-0/+2
|
* Get defaults for the boot device (and flags) from the filebde1997-02-131-16/+48
| | | | | | | | | | | | | "boot.config" (relative to the root directory on the 'a' partition on the first BSD slice) if it exists. If it doesn't exist, then the only visible changes should be that the kernel name isn't reset to "/kernel" after looking it up fails and that the default name is now "kernel". The new function readfile() can be used for other things: - reading help messages. - reading splash screens. - reading userconfig info.
* Print error messages to stderr, not to stdout.bde1997-02-131-2/+2
| | | | | Fixed usage message to match reality (-a was missing) and man page (arg names were spelled differently).
* Oops, cut/paste could be done on tthe WRONG vty :(sos1997-02-133-3/+3
| | | | pointed out by Kazu.
OpenPOWER on IntegriCloud