aboutsummaryrefslogtreecommitdiff
path: root/sys/net
Commit message (Expand)AuthorAgeFilesLines
* Supply a stub bpf_validate() (always returning false - the script is notPeter Wemm2001-01-291-4/+13
* Use M_PANIC instead of if (sc == NULL) panic();Peter Wemm2001-01-291-1/+2
* Make the number of loopback interfaces dynamically tunable. Why onePeter Wemm2001-01-292-17/+79
* Minor cleanups after yesterday's patch.Luigi Rizzo2001-01-261-19/+10
* Bring bridging code in line with the one which works on -STABLE.Luigi Rizzo2001-01-261-49/+97
* Comment the interface to ether_input() and the way is normallyLuigi Rizzo2001-01-251-0/+9
* DEVFS cloning for if_tap.Poul-Henning Kamp2001-01-241-5/+47
* Assorted bugfixes:Luigi Rizzo2001-01-221-14/+23
* Move most of sys/mutex.h into kern/kern_mutex.c, thereby making the mutexJason Evans2001-01-211-1/+2
* select() DKI is now in <sys/selinfo.h>.Garrett Wollman2001-01-091-1/+1
* Small fix for bpf compat:Bosko Milekic2000-12-272-1/+2
* * Rename M_WAIT mbuf subsystem flag to M_TRYWAIT.Bosko Milekic2000-12-219-13/+13
* Various fixes to make leased line operation more robust. On lcp_up, startJohn Hay2000-12-191-49/+100
* Fix bug: a read() on a bpf device which was in non-blocking modeJohn Polstra2000-12-171-5/+6
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-088-20/+12
* Staticize some malloc M_ instances.Poul-Henning Kamp2000-12-081-1/+1
* Move the wakeup/signaling of the reader side of the tun device intoJonathan Lemon2000-12-051-9/+18
* Remove the last of the MD netisr code. It is now all MI. RemoveJake Burkholder2000-12-051-1/+5
* Unbreak world; #include <sys/mutex.h> instead of <machine/mutex.h>Jonathan Lemon2000-11-261-1/+3
* Make log(-1, ...) do what addlog(...) did.Poul-Henning Kamp2000-11-261-89/+89
* Remove unused variable, spl() manipulation isn't done for the ifq now.Jonathan Lemon2000-11-251-1/+0
* Lock down the network interface queues. The queue mutex must be obtainedJonathan Lemon2000-11-2517-381/+227
* Fixup (hopefully) bridging + ipfw + dummynet together...Bosko Milekic2000-11-231-2/+16
* Make compilable. if_fddisubr.c depended on sys/malloc.h by myHajimu UMEMOTO2000-11-041-0/+1
* Fix an order of operations buglet. ! has higher precedence than &. ThisJohn Baldwin2000-11-031-1/+1
* Have tuninit() return an error if an interface address is NULL.Jonathan Lemon2000-11-021-19/+23
* IPv6 was not work on FDDI.Hajimu UMEMOTO2000-11-011-0/+87
* Add pfil.9 manpage to build after a repository copy.Ruslan Ermilov2000-10-301-133/+0
* Add some additional message types for coming raylan driver from DuncanWarner Losh2000-10-301-0/+35
* Move suser() and suser_xxx() prototypes and a related #define fromPoul-Henning Kamp2000-10-292-2/+0
* Remove unneeded #include <sys/proc.h> lines.Poul-Henning Kamp2000-10-291-1/+0
* Initialize rn_mklist in rn_newpair(). The undocumented assumptionGarrett Wollman2000-10-271-0/+1
* Convert all users of fldoff() to offsetof(). fldoff() is badPoul-Henning Kamp2000-10-271-4/+0
* Remove bogus undocumented macros used to control conditional assembly.Poul-Henning Kamp2000-10-271-13/+0
* Remove #if DO_DEFLATEPoul-Henning Kamp2000-10-272-6/+0
* - Overhaul the software interrupt code to use interrupt threads for eachJohn Baldwin2000-10-251-1/+3
* Augment the 'ifaddr' structure with a 'struct if_data' to keepJosef Karthauser2000-10-191-0/+1
* BPF wants packets in host byte order whereas TUN_IFHEAD wants themBrian Somers2000-10-151-5/+12
* Remove unneeded #include <machine/clock.h>Poul-Henning Kamp2000-10-152-2/+0
* Do some cleanups of the HARP atm codes interface into the system:Poul-Henning Kamp2000-10-122-10/+1
* Don't make_dev() in bpfopen() unless we need to.Poul-Henning Kamp2000-10-091-2/+3
* make sure we have root priv on SIOCSIFPHY*. from thorpej@netbsdJun-ichiro itojun Hagino2000-10-041-0/+5
* Properly setup link level header length for 802.2 and SNAP frames.Boris Popov2000-09-302-6/+9
* Handle slip options in the usual way (generate a dummy options file inBruce Evans2000-09-261-2/+1
* Removed unused includes (garbage left over/created by the SMPng megacommit).Bruce Evans2000-09-261-6/+0
* In theory, m_dup should not be necessary, as m_copypacket should beNick Sayer2000-09-251-3/+3
* Get rid of a panic that occurs in ether_demux() by dereferencing a NULL mbufBosko Milekic2000-09-242-1/+12
* Rename lminor() to dev2unit(). This function gives a linear unit numberPoul-Henning Kamp2000-09-193-7/+9
* Call bpfattach() correctly from if_ppp.cBrian Somers2000-09-161-0/+5
* Follow BSD/OS and NetBSD, keep the ip_id field in network order all the time.Ruslan Ermilov2000-09-141-2/+0