aboutsummaryrefslogtreecommitdiff
path: root/sys/net
Commit message (Expand)AuthorAgeFilesLines
* Update to C99, s/__FUNCTION__/__func__/,David E. O'Brien2001-12-102-3/+3
* - malloc should be passed M_WAITOK, not M_WAIT (a mbuf flag)Andrew R. Reiter2001-12-071-4/+1
* Don't pass an interface pointer to VLAN_INPUT{,_TAG}. Get it from theBrooks Davis2001-12-032-11/+11
* Fix a typo in a commentBrian Somers2001-11-281-1/+1
* Whitespace change - replace leading spaces with tabs.Luigi Rizzo2001-11-241-6/+6
* Expand the comment on the layout of softc, arpcom and ifnet structures,Luigi Rizzo2001-11-221-0/+15
* Introduce a syncache, which enables FreeBSD to withstand a SYN floodJonathan Lemon2001-11-221-1/+1
* - Utilize the great M_ZERO flag rather than allocating memory then doAndrew R. Reiter2001-11-211-2/+1
* - M_ZERO already sets bif_dlist to zero; there is no need toAndrew R. Reiter2001-11-181-1/+0
* Give struct socket structures a ref counting interface similar toMatthew Dillon2001-11-172-3/+3
* Remove ifnet.if_mpsafe for now. If this is needed, it won't be neededJohn Baldwin2001-11-141-9/+1
* 3.5 years ago Wollman wrote:Poul-Henning Kamp2001-11-052-344/+0
* MFS: sync the ipfw/dummynet/bridge code with the one recently mergedLuigi Rizzo2001-11-043-137/+188
* Remove an extra splimp() call.Luigi Rizzo2001-11-011-1/+0
* sc_lasttime and sc_starttime are time_t's, not long's.Matthew Dillon2001-10-271-2/+2
* Remove extra memory region kept by "struct pfil_head pfil_head_t;".Ruslan Ermilov2001-10-221-1/+1
* Fix this so it compiles cleanly for alpha. Tried to do some minimal testing.Matt Jacob2001-10-192-11/+12
* Add a SIOCGIFINDEX ioctl, which returns the index of a named interface.Jonathan Lemon2001-10-172-0/+6
* Cleanup ifunit(), so it uses the dev_named() function to map an interfaceJonathan Lemon2001-10-171-29/+11
* Pull post-4.4BSD change to sys/net/route.c from BSD/OS 4.2.Ruslan Ermilov2001-10-179-140/+189
* Bring in latest CSRG revisions to this file:Ruslan Ermilov2001-10-171-1/+9
* 64-bit fixes from CSRG.Ruslan Ermilov2001-10-172-4/+4
* Revision 1.32 corresponded to CSRG revision 8.2.Ruslan Ermilov2001-10-171-1/+1
* Revision 1.13 corresponded to CSRG revision 8.4.Ruslan Ermilov2001-10-171-1/+1
* Record the fact that revision 1.39 corresponded to CSRG revision 8.4,Ruslan Ermilov2001-10-171-1/+1
* if_index is the highest interface index in the system, not the nextBill Fenner2001-10-171-3/+3
* The interface index space may be sparsely populated (e.g. when anBill Fenner2001-10-171-1/+2
* Set the interface speed back to zero, after ether_ifattach() set itBill Fenner2001-10-151-0/+1
* Don't even attempt to clone host routes.Ruslan Ermilov2001-10-151-2/+4
* bring in ARP support for variable length link level addressesMax Khon2001-10-148-6/+173
* Traverse the list of network interfaces rather than use if_index- if_index isMatt Jacob2001-10-121-3/+1
* Fix the ``WARNING: Driver mistake: repeat make_dev'', caused by usingJonathan Lemon2001-10-111-2/+3
* Move device nodes into a /dev/net/ directory, to avoid conflict withJonathan Lemon2001-10-111-8/+61
* Set if_type and if_addrlen before calling if_attach(), so the values areJonathan Lemon2001-10-111-1/+1
* Malloc mutexes pre-zero'd as random garbage (including 0xdeadcode) myJohn Baldwin2001-10-101-1/+1
* - Fix typo in "didn't find tag in list" code -- != should have been ==.Bill Fenner2001-10-061-4/+5
* Add ia64 to the list of machines which don't do unaligned reads.Doug Rabson2001-10-052-2/+2
* Make it so dummynet and bridge can be loaded as modules.Paul Saab2001-10-053-57/+82
* Documentation comment: note that the each NIC's softc is assumed to startMatt Jacob2001-10-021-0/+5
* Update the hash table when sppp mucks directly with the interface address.Jonathan Lemon2001-10-011-0/+4
* Add ability to attach knotes to network devices.Jonathan Lemon2001-09-291-1/+73
* Introduce network device nodes. Network devices will now automaticallyJonathan Lemon2001-09-291-63/+157
* Change sysctl_iflist() so it has a single point of return. This willJonathan Lemon2001-09-291-3/+4
* Use in_ifaddrhashtbl instead of in_ifaddrhead to look up IP address.Jonathan Lemon2001-09-291-5/+1
* Two main changes here:Luigi Rizzo2001-09-271-2/+2
* /home/brooks/ng_gif.messageBrooks Davis2001-09-262-1/+28
* Use LIST_ macros instead of TAILQ_ macros to be more like NetBSD.Brooks Davis2001-09-262-9/+12
* Make faith loadable, unloadable, and clonable.Brooks Davis2001-09-252-87/+141
* Use the passed in thread to selrecord() instead of curthread.John Baldwin2001-09-213-3/+3
* Use the current process's credentials rather than socket's cached.Ruslan Ermilov2001-09-201-2/+2