| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Don't send/recieve packets when the interface is down. | simokawa | 2002-10-23 | 1 | -0/+9 |
* | Use if_printf(ifp, "blah") instead of printf("ppp%d: blah", ifp->if_unit). | brooks | 2002-10-21 | 1 | -15/+13 |
* | Use if_printf(ifp, "blah") instead of printf("vlan%d: blah", ifp->if_unit). | brooks | 2002-10-21 | 1 | -2/+2 |
* | Use if_printf(ifp, "blah") instead of printf("sl%d: blah", sc->sc_if.if_unit). | brooks | 2002-10-21 | 1 | -2/+1 |
* | Use if_printf(ifp, "blah") instead of | brooks | 2002-10-21 | 5 | -10/+5 |
* | When packets pass in and out of six-to-four (STF) tunnels, perform | rwatson | 2002-10-20 | 1 | -0/+15 |
* | We have mem{cpy,cmp,set} functions in the kernel, don't #define them to | phk | 2002-10-20 | 1 | -3/+0 |
* | When a packet is sent via a FDDI interface, perform appropriate MAC | rwatson | 2002-10-20 | 1 | -0/+12 |
* | When a packet is destined for delivery via an ATM medium, perform | rwatson | 2002-10-20 | 1 | -0/+11 |
* | Don't us an array[1], it just hides where '&' isn't used right. | phk | 2002-10-20 | 1 | -11/+11 |
* | last arg of in6?_gif_output() is not used any more. | ume | 2002-10-17 | 1 | -2/+2 |
* | - drop too short IPv6 frame | ume | 2002-10-17 | 1 | -10/+15 |
* | s/gifp/ifp/ | ume | 2002-10-17 | 1 | -11/+11 |
* | de-__P() | alfred | 2002-10-16 | 1 | -3/+3 |
* | - after gif_set_tunnel(), psrc/pdst may be null. set IFF_RUNNING accordingly. | ume | 2002-10-16 | 2 | -134/+162 |
* | Be consistent about functions being static. | phk | 2002-10-16 | 7 | -12/+12 |
* | FIx misindentation. | phk | 2002-10-16 | 2 | -22/+25 |
* | add definitions for RIPEMD-160 HMAC and Skipjack encryption algorithms, | sam | 2002-10-16 | 1 | -0/+2 |
* | Replace aux mbufs with packet tags: | sam | 2002-10-16 | 4 | -5/+4 |
* | Correct the definitions of SADB_* to be compatible with | ume | 2002-10-15 | 1 | -15/+15 |
* | Unconditionally restore the pointer to the saved Ethernet header after | cjc | 2002-10-14 | 1 | -4/+1 |
* | When reusing a pointer as a number, at least cast it | mux | 2002-10-06 | 1 | -1/+1 |
* | In an SMP environment post-Giant it is no longer safe to blindly | truckman | 2002-10-03 | 3 | -6/+6 |
* | Since bpf is no longer an optional component, remove associated ifdef's. | sobomax | 2002-10-02 | 1 | -9/+0 |
* | style(9): | mike | 2002-10-02 | 1 | -5/+5 |
* | Use standards visibility conditionals to conditionalize most of this | mike | 2002-10-02 | 1 | -5/+15 |
* | Fix some harmless mis-indents. | phk | 2002-10-01 | 3 | -3/+3 |
* | Fixed some of the namespace pollution in rev.1.33. <sys/systm.h> was | bde | 2002-09-29 | 1 | -1/+0 |
* | Be consistent about "static" functions: if the function is marked | phk | 2002-09-28 | 3 | -4/+4 |
* | Don't return(foo(bla)) when foo returns void. | phk | 2002-09-28 | 1 | -2/+4 |
* | Add the "Monitor" interface flag. | phk | 2002-09-27 | 2 | -0/+8 |
* | Be a bit more technical: | phk | 2002-09-26 | 1 | -1/+1 |
* | Revert 1.27, as it breaks IPv6 over IPv4 tunnels. | sobomax | 2002-09-26 | 1 | -2/+2 |
* | Convert most printf()s to if_printf()s. | brooks | 2002-09-24 | 1 | -15/+10 |
* | Add a new helper function if_printf() modeled on device_printf(). The | brooks | 2002-09-24 | 2 | -0/+15 |
* | use __packed/__aligned rather than GCC-specific __attribute__. | alfred | 2002-09-23 | 1 | -2/+2 |
* | s/__attribute__((__packed__))/__packed/g | alfred | 2002-09-23 | 4 | -18/+18 |
* | Moved netisr code from kern/kern_intr.c to net/netisr.c as threatened in a | jake | 2002-09-22 | 1 | -0/+116 |
* | Insert a missing call to MAC protection check for delivering an | rwatson | 2002-09-21 | 1 | -1/+5 |
* | mistakenly set IFF_UP by SIOCSIFPHYADDR. | ume | 2002-09-20 | 1 | -4/+0 |
* | Optimize the way we call BPF a tiny bit: If we chop the ether-header off | phk | 2002-09-18 | 1 | -8/+7 |
* | Use m_length() instead of home-rolled. | phk | 2002-09-18 | 1 | -4/+3 |
* | Use m_length() instead of home-rolled versions. | phk | 2002-09-18 | 1 | -13/+4 |
* | - increment interface output counter. sync w/ netbsd-current | ume | 2002-09-17 | 1 | -2/+11 |
* | Remove __RCSID(). | sobomax | 2002-09-17 | 1 | -3/+0 |
* | - reject SIOCSIFADDR if embedded address is in private address range | ume | 2002-09-17 | 1 | -1/+26 |
* | Include include "opt_atalk.h" so that the NETATALK support can work. | bde | 2002-09-16 | 1 | -17/+1 |
* | Include <sys/systm.h> instead of depending on namespace pollution 2 | bde | 2002-09-15 | 1 | -0/+1 |
* | Restore original behaviour of recursion preventer. | sobomax | 2002-09-13 | 2 | -5/+7 |
* | Fix the GENERIC build. Don't refer to the non-existant fw_one_pass. | obrien | 2002-09-12 | 1 | -1/+1 |