summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make it compile and (except for mrouted which is untested as yet) run.wollman1994-09-0813-4/+116
| | | | | Some of these ``modified'' files aren't really modified at all, but CVS isn't smart enough to know the difference.
* Print out more useful information about IGMP packets. (Someday, this shouldwollman1994-09-082-18/+98
| | | | include a full DVMRP parser.)
* Fix endian bug introduced at Berkeley during the Net2->4.4-lite transition.pst1994-09-081-8/+12
| | | | | | Fix is courtesy of the NetBSD folks. Reviewed by: pst
* This commit was generated by cvs2svn to compensate for changes in r2555,wollman1994-09-0820-0/+8519
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * mrouted from multicast 3.3 distributionwollman1994-09-0820-0/+8519
|
* The mrt_ioctl goop properly depends on MROUTING, not MULTICAST. (Oof!)wollman1994-09-081-2/+2
|
* Tell netstat about the new multicast forwarding statistics. For the moment,wollman1994-09-081-8/+23
| | | | | don't try to do any multicast forwarding cache printouts; it's not clear that netstat can do anything particularly useful or meaningful.
* Add defines to allow pwd_mkdb to build databases in a specifiedgpalmer1994-09-071-0/+5
| | | | directory - removing the need to hardcode /etc into pwd_mkdb
* Added the -d <directory> functionality to allow construction of thegpalmer1994-09-072-17/+31
| | | | password databases somewhere other than /etc.
* - Remove crypt() - it's in libcryptcsgr1994-09-073-116/+11
| | | | | | | - remove ^L's - CTM will probably choke on them - add PRECIOUSLIB to Makefile - name changes libcrypt -> libcipher Submitted by: Geoff.
* Added wd2 and wd3 to the standard set. They are in GENERICAH, they canphk1994-09-072-22/+8
| | | | | | | be installed on, so they should be in /dev as well. Removed the smoking remains of dcf*. I didn't realize that it had made it into MAKEDEV. Gone from cdevsw long time ago, gone from /dev now.
* This commit was generated by cvs2svn to compensate for changes in r2546,csgr1994-09-0711-0/+1810
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Bring in the 1.1.x international libcrypt, whichcsgr1994-09-0711-0/+1810
| | | | | | will in due course become libcipher. Based on David Burren's FreeSEC Submitted by: Geoff.
* Make include/md directory to hold MD2/34/5 include files for libmd on install.pst1994-09-071-1/+3
| | | | Submitted by: pst
* Reviewed by: Stefan Esserse1994-09-071-2/+2
| | | | | | Submitted by: rtioctl(): changed parameter to mrt_ioctl from "cmd" to "req" to make it compile with MULTICAST defined.
* Bug fixed:ache1994-09-071-2/+2
| | | | | when refreshing standouted line curses outputs SO for all characters Submitted by: ZW6T-KND@j.asahi-net.or.jp
* Get rid of the need for the readonly mandatory option - set readonlydg1994-09-071-4/+6
| | | | flags regardless of whether the user specified it.
* Add the installation of bsd.README. Realphabitize the FILES= list.rgrimes1994-09-071-2/+3
| | | | | Reviewed by: rgrimes Submitted by: bde
* Fix a longstanding bogon with setenv usage.jkh1994-09-071-1/+1
| | | | Submitted by: jkh
* Back out static hacks & build of usr.bin until Geoff informs thepst1994-09-073-8/+9
| | | | | | world of his master plan. Submitted by: pst
* Remove the old crypt/no-crypt rules and replace them withpst1994-09-071-10/+14
| | | | | | | | | | | the choice of building with the password scrambler or the DES libraries. Folks outside the US can simply drop in the other DES libraries. (stupid laws...) Everything still keys off of the old NOCRYPT variable so building a portable distribution remains the same. Submitted by: pst
* Install Luke's enhancements for finger.pst1994-09-076-24/+117
| | | | | | | | | | By default, behave like the old ugly 4.4bsd finger and print office information instead of remote login information. It's an easy one line fix to make it behave like most other vendor's fingers if we decide to change the default. Reviewed by: pst
* Remove static in front of declarations for des_setkey and des_cipherpst1994-09-076-8/+23
| | | | | | | | | | | so that linking against -lcrypt (-ldescrypt) will give us the good versions instead of the stubs in libc. (These changes need to be made to the non-US version of libdescrypt too!) Allow building and support for bdes program. A bit more work still needs to be done on secure telnet. Submitted by: pst
* The .c: rule added by Bruce, but as yet unused, causes serious problemsrgrimes1994-09-071-3/+5
| | | | | | | | for the 1.1.5 FreeBSD make. For now just comment it out until a fix for make can be found. Reviewed by: bde Submitted by: rgrimes
* Removed MULTICAST ifdef's; it's no longer optional. Cleaned up code adg1994-09-072-392/+192
| | | | little.
* unifdef -DMULTICAST, since multicast support is always enabled in 4.4.wollman1994-09-072-40/+2
|
* Problem:jkh1994-09-071-1/+27
| | | | | | | | | | | | | | | Accounts that have "pw_change" set, are supposed to change their passwords by the date specified in "pw_change". If they have not changed their passwords by that date, currently they get "LOCKED OUT" of the system. This is not the correct behavior, the user should be prompt (forced?) to change their password at this time. If the behavior of "pw_change" was meant to be a LOCKOUT, then you should use "pw_expire". Solution: Instead of locking out the user, prompt them to change their password. Reviewed by: jkh Submitted by: rls
* Initial get-the-easy-case-working upgrade of the multicast codewollman1994-09-0614-937/+2404
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to something more recent than the ancient 1.2 release contained in 4.4. This code has the following advantages as compared to previous versions (culled from the README file for the SunOS release): - True multicast delivery - Configurable rate-limiting of forwarded multicast traffic on each physical interface or tunnel, using a token-bucket limiter. - Simplistic classification of packets for prioritized dropping. - Administrative scoping of multicast address ranges. - Faster detection of hosts leaving groups. - Support for multicast traceroute (code not yet available). - Support for RSVP, the Resource Reservation Protocol. What still needs to be done: - The multicast forwarder needs testing. - The multicast routing daemon needs to be ported. - Network interface drivers need to have the `#ifdef MULTICAST' goop ripped out of them. - The IGMP code should probably be bogon-tested. Some notes about the porting process: In some cases, the Berkeley people decided to incorporate functionality from later releases of the multicast code, but then had to do things differently. As a result, if you look at Deering's patches, and then look at our code, it is not always obvious whether the patch even applies. Let the reader beware. I ran ip_mroute.c through several passes of `unifdef' to get rid of useless grot, and to permanently enable the RSVP support, which we will include as standard. Ported by: Garrett Wollman Submitted by: Steve Deering and Ajit Thyagarajan (among others)
* This commit was generated by cvs2svn to compensate for changes in r2528,se1994-09-061-0/+310
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Reviewed by: Stefan Esser <se>se1994-09-061-0/+310
| | | | | | | | | | | | Submitted by: Current development version of PCI and NCR 53c810 driver. Not yet tested under FreeBSD-2.0 !
* | Reviewed by: Stefan Esser <se>se1994-09-062-4/+6
| | | | | | | | | | Submitted by: Added "i386/pci/pci_intel.c" for Intel PCI chip set specific driver code.
* | Reviewed by: Stefan Esser <se>se1994-09-062-4/+4
| | | | | | | | | | Submitted by: Changed "bp->av_forw" into "bp->b_actf" to make it compile ...
* | Revert back to old config behavior if compiled with -DCONFIG_DONT_CLOBBER.wollman1994-09-062-0/+9
| |
* | Disabled a debugging printf.dg1994-09-061-1/+3
| |
* | Add russian timezones.ache1994-09-062-0/+163
| | | | | | | | | | (it is only workaround until proper zoneinfo (f.e. from 1.1.5.1) will be installed)
* | Install posix rules as default and leapseconds rules as additionalache1994-09-061-1/+1
| |
* | Simple changes to paging algorithms...but boy do they make a difference.dg1994-09-062-21/+100
| | | | | | | | | | | | FreeBSD's paging performance has never been better. Wow. Submitted by: John Dyson
* | Reviewed by:ats1994-09-061-1/+1
| | | | | | | | Add entries for the speed 57600 and 115200 to the allowed speeds.
* | Reviewed by:ats1994-09-055-13/+8
| | | | | | | | | | Delete the hints to the sg driver. This thing was never finished and has now been beaten by the sea driver.
* | Reviewed by:ats1994-09-052-8/+136
| | | | | | | | | | | | | | | | Add initialization to the if_ie driver for the Micom Interlan NI5210 card. This is a very old 82586 based card with only 8Kb or 16Kb on board memory. Also only 8-bit wide instead of 16-bit like the AT& or 3COM card. Warning: this thing is only tested so far that it detects all bits correctly but is not yet on an ethernet. Will do that tomorrow.
* | Don't define KLUDGELINEMODE.csgr1994-09-051-1/+2
| | | | | | | | | | | | (If you do, you will have problems trying to telnet into a FreeBSD-2.0 box from a Sun, and I WANT TO DO THAT.) Submitted by: Geoff
* | Add skey.access manual page. Comes form 1.1.5.guido1994-09-051-0/+34
| |
* | Get rid of a superfluous echo.jkh1994-09-053-6/+3
| | | | | | | | Submitted by: jkh
* | Remove symlink before remaking it for libkern.ajkh1994-09-053-6/+9
| | | | | | | | | | Reviewed by: jkh Submitted by: dima
* | New flag -u to suppress functions whose name does not begin with anbde1994-09-053-10/+32
| | | | | | | | | | | | | | | | underscore. Use it to avoid seeing badsw when profiling the kernel. Print times more accurately (e.g. usec in %8.0f format instead of msec in %8.2f format for averages) if hz >= 10000. This should have no effect now since profhz is only 1024.
* | Fix comments.bde1994-09-053-18/+15
| |
* | Build database at build time instead of at install time.bde1994-09-051-2/+7
| |
* | 386bsd -> kernel in strings.bde1994-09-051-3/+3
| |
* | u_long -> unsigned long so that we don't depend on namespace pollutionbde1994-09-052-15/+17
| | | | | | | | in <stdio.h>.
* | Define __GNUC__ as 2 same as cc -E would do.bde1994-09-052-5/+5
| |
OpenPOWER on IntegriCloud