Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-31 | Remove a bunch of sockaddr_in6 pointer casts and replace others | Alexander Bluhm | |
with sin6tosa() or satosin6() inline functions. This allows the compiler to check the types more strictly. OK mpi@ | |||
2013-05-14 | Fix build with MRT6DEBUG defined. | Martin Pieuchot | |
2013-05-02 | tedu broken Resource Reservation Protocol code that was ifdef RSVP_ISI. | Martin Pieuchot | |
ok deraadt@, tedu@ (implicit) | |||
2013-03-28 | no need for a lot of code to include proc.h | Ted Unangst | |
2013-03-20 | Introduce if_get() to retrieve an interface descriptor pointer given | Martin Pieuchot | |
an interface index and replace all the redondant checks and accesses to a global array by a call to this function. With imputs from and ok bluhm@, mikeb@ | |||
2012-09-19 | ioctl requests are u_long not int, spotted via clang | Jonathan Gray | |
ok deraadt@ miod@ | |||
2010-04-20 | remove proc.h include from uvm_map.h. This has far reaching effects, as | Ted Unangst | |
sysctl.h was reliant on this particular include, and many drivers included sysctl.h unnecessarily. remove sysctl.h or add proc.h as needed. ok deraadt | |||
2010-02-08 | More destatic and ansification. | Joel Sing | |
ok claudio@ naddy@ | |||
2009-10-30 | Don't do a double free, sys_getsockopt() will take care of freeing the | Claudio Jeker | |
mbuf allocated by the subroutines. OK kettenis@ | |||
2009-05-31 | Remove _KERNEL goo from kernel files because we're setting _KERNEL correctly. | Claudio Jeker | |
OK deraadt@, miod@ | |||
2008-09-17 | remove dead stores and newly created unused variables. | Charles Longeau | |
Found by LLVM/Clang Static Analyzer. ok henning@ mpf@ | |||
2008-06-11 | ANSIfy to sync with KAME. From Karl Sjodahl <dunceor@gmail.com>. | Ryan Thomas McBride | |
ok todd deraadt naddy bluhm | |||
2008-01-02 | return with ENOTTY instead of EINVAL for unknown ioctl requests. | Brad Smith | |
ok claudio@ krw@ dlg@ | |||
2007-12-14 | add sysctl entry points into various network layers, in particular to | Theo de Raadt | |
provide netstat(1) with data it needs; ok claudio reyk | |||
2007-06-01 | apply the "skip ipsec if there are no flows" speedup diff to IPv6 too. | Henning Brauer | |
we need a pointer to the inpcb to decide, which was not previously passed to ip6_output, so this diff is a little bigger. from itojun, ok ryan | |||
2006-11-21 | introduce sysctl net.inet6.ip6.multicast_mtudisc (for multicast routers). | Jun-ichiro itojun Hagino | |
deraadt ok. manpage nit by jmc. | |||
2006-11-17 | change semantics of ff01::/16 to interface local multicast | Jun-ichiro itojun Hagino | |
(to sync up with more recent IPv6 spec) ok from: deraadt mcbride | |||
2005-10-14 | avoid silly static variables that even caused nesting issues, | Brad Smith | |
not to mention reentrancy concerns. From christos NetBSD ok deraadt@ | |||
2004-11-10 | Fix 'netstat -sp pim6' | Ryan Thomas McBride | |
From Pavlin Radoslavov | |||
2004-06-21 | First step towards more sane time handling in the kernel -- this changes | Thorsten Lockert | |
things such that code that only need a second-resolution uptime or wall time, and used to get that from time.tv_secs or mono_time.tv_secs now get this from separate time_t globals time_second and time_uptime. ok art@ niklas@ nordin@ | |||
2003-12-10 | validate set/getsockopt arg more strictly. local privileged user could cause | Jun-ichiro itojun Hagino | |
a kernel panic with previous code. from kame | |||
2003-12-10 | use if_indexlim (instead of if_index) and ifindex2ifnet[x] != NULL | Jun-ichiro itojun Hagino | |
to check if interface exists, as (1) if_index will have different meaning (2) ifindex2ifnet could become NULL when interface gets destroyed, when we introduce dynamically-created interfaces. markus ok | |||
2003-07-08 | on interface removal, clear multicast forwarding stuff. from kame | Jun-ichiro itojun Hagino | |
2003-06-24 | use time.tv_sec directly, rather than having time_second (freebsd NIH). | Jun-ichiro itojun Hagino | |
2003-06-06 | don't try to forward multicast packet to mif that went away; kame | Jun-ichiro itojun Hagino | |
2003-06-03 | remove unneeded break after return. sync w/kame | Jun-ichiro itojun Hagino | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-05-15 | check pim version before checksum. version check is cheaper. | Jun-ichiro itojun Hagino | |
2003-05-14 | KNF; sync w/kame | Jun-ichiro itojun Hagino | |
2003-05-14 | make PULLDOWN_TEST codepath the default (has been default for a long time). | Jun-ichiro itojun Hagino | |
markus ok | |||
2003-05-07 | use strlcpy; itojun ok | Theo de Raadt | |
2002-11-27 | recover original stanford copyright. sync w/kame | Jun-ichiro itojun Hagino | |
2002-11-09 | need icmp6.h for MULTICAST_PMTUD case. sync w/kame | Jun-ichiro itojun Hagino | |
2002-09-11 | KNF - return is not a function. sync w/kame | Jun-ichiro itojun Hagino | |
2002-07-25 | correct MTU check. sync w/kame | Jun-ichiro itojun Hagino | |
2002-06-29 | We know noone called Bill Fenenr | Theo de Raadt | |
2002-06-09 | whitespace cleanup | Jun-ichiro itojun Hagino | |
2002-06-08 | splnet -> splsoftnet where appropriate | Jun-ichiro itojun Hagino | |
2002-06-07 | typo | Jun-ichiro itojun Hagino | |
2002-06-07 | 'fall through' is not a valid LINT keyword. | Jun-ichiro itojun Hagino | |
2002-05-30 | use M_READONLY where possible. minor cleanup/sync with kame. | Jun-ichiro itojun Hagino | |
2002-05-29 | attach nd_ifinfo structure to if_afdata. | Jun-ichiro itojun Hagino | |
split IPv6 MTU (advertised by RA) from real link MTU. sync with kame | |||
2002-03-24 | double m_free() - niklas@openbsd | Jun-ichiro itojun Hagino | |
2002-03-14 | First round of __P removal in sys | Todd C. Miller | |
2002-02-10 | spelling | Theo de Raadt | |
2001-12-07 | whitespace/comment sync with kame | Jun-ichiro itojun Hagino | |
2001-06-09 | No need for net/net_osdep.h | Angelos D. Keromytis | |
2001-03-25 | missing splx. sync with kame. | Jun-ichiro itojun Hagino | |
From: csapuntz@play-doh.stanford.edu (Constantine Sapuntzakis) | |||
2001-03-08 | more missing splx. sync with kame | Jun-ichiro itojun Hagino | |
2001-03-07 | missing splx. from aaron. sync with kame | Jun-ichiro itojun Hagino | |