summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-11-25resolve conflict between M_TUNNEL and M_ANYCAST6, remove M_COMP (it'sMarkus Friedl
only set and never read), update documentation; ok fgsch, deraadt, millert
2004-11-25use ttl from setsockopt(), similar to bsd/os; ok henning, mcbride, fgschMarkus Friedl
2004-11-25remove special handling of PF_KEY in net_sysctl; ok deraadtMarkus Friedl
2004-11-25off by one in err()Markus Friedl
2004-11-25Move towards a more flexible and generic interrupt system, as well as betterMiod Vallat
zs behaviour. From NetBSD; integration work by Martin Reindl
2004-11-25Handle CVSD_SET_MODDIR, add session allocation and some minor cleanupJean-Francois Brousseau
2004-11-25add regress test support for buffereventsBrad Smith
From NetBSD ok markus@
2004-11-25update FILES;Jason McIntyre
fixes pr #3998; diff from frank denis, though slightly different fix committed; help and ok millert@
2004-11-25Don't use strlcpy() to copy just part of a string, it make the code tooTodd C. Miller
confusing. While in here make the code more readable. Ok pat@
2004-11-25fix for race between invocation for timer and network inputMarkus Friedl
1) add a reaper for TCP and SYN cache states (cf. netbsd pr 20390) 2) additional check for TCP_TIMER_ISARMED(TCPT_REXMT) in tcp_timer_persist() with mickey@; ok deraadt@
2004-11-25compatibility ioctls for things like "wicontrol ath0 -l" toReyk Floeter
list known stations on a net80211-based ap. ok millert@
2004-11-25Ignore 0.0.0.0 in RTM_NEWADDR messages as these messages are generated byClaudio Jeker
dhclient. This fixes the dhclient exiting problem reported by Steve Shockley. This is a fast fix for the problem acctually the dhclient-script needs to be replaced. OK henning@ deraadt@
2004-11-25Remove obsolete RhostsAuthentication from test config; ok markus@Darren Tucker
2004-11-25fix "listen on hostname"Henning Brauer
fallout from the deferred dns lookups noticed by dhartmei@
2004-11-25Change the behavior of IFS word-splitting: split wordsJared Yanovich
when the current character is IFS space and the last character was a word character or it was non-white IFS space and the current character is non-white IFS space. This deviates from the previous behavior because the latter splits words when the last character is any IFS space and the current is non-white IFS, resulting in more fields most of the time. This new behavior follows what the man page describes; i.e., that a field is delimited by one or more IFS whitespace characters followed by zero or one non-white IFS characters. Requires addition of a new substitution expansion state to handle the special case of empty fields at the beginning. testing by naddy ok jmc, millert, otto, deraadt
2004-11-25Enable lpt0 on amd64 GENERIC. ok deraadt@Ian Darwin
2004-11-24if I would remember at what I looked when learning how to use our wonderfulHenning Brauer
RB_* macros I could fix the RB_HEAD calls there too... useless extra define, nothingthat hurts much. stumbled over while hacking on, eh, something new, claudio ok
2004-11-24Long time not accurate anymore.Miod Vallat
2004-11-24don't leave run state on background scanDamien Bergamini
2004-11-24add missing field in struct iwi_associateDamien Bergamini
2004-11-24- add short preamble capabilityDamien Bergamini
- only set channels power in ibss mode - use default sensitivity - copy capinfo from beacon or probe resp
2004-11-24extend scan delay from 20ms to 100ms for each channel + minor consistency tweakDamien Bergamini
2004-11-24reset adapter in iwi_stop()Damien Bergamini
2004-11-24clear register 0x41, not 0x43 (endianness)Damien Bergamini
2004-11-24fix interrupt handlerDamien Bergamini
2004-11-24remove obsolete `A' from `state' example;Jason McIntyre
ok millert@
2004-11-24on MP machines, in STAT field, add /# where # is the cpu number so thatTheo de Raadt
you can see processes move around; ok pval millert
2004-11-24nothing really uses kernfs anymore, and in general it is unsafe since theTheo de Raadt
way that it interacts with the buffer cache can result in non-atomic data ok most people
2004-11-24say hi to _ftpHenning Brauer
2004-11-24replace old net/if_ieee80211.h header with the net80211 ones, userland part.Federico G. Schwindt
millert@ mcbride@ jsg@
2004-11-24typoThierry Deval
2004-11-24Use sysctl to get the running kernel version instead of grottingTodd C. Miller
through kmem. Fixes false positives on machines where the memory is not cleared between boots. OK deraadt@, tedu@, jaredy@
2004-11-24typo in previousIan Darwin
2004-11-24Do not put a ``warning: '' prefix to stabs warning messages, as we alreadyMiod Vallat
provide it in the message. Same logic as in ld/emultempl/elf32.em, except that some arches use duplicated code in libbfd now. Can you spell bloat?
2004-11-24replace old net/if_ieee80211.h header with the net80211 ones, kernel part.Theo de Raadt
file missed by fgsch, did he miss any others? grep helps
2004-11-24Enable krb5 authentication (from Gabriel Kihlman) and encryptionBjorn Sandell
"go for it" deraadt@
2004-11-24syncTheo de Raadt
2004-11-24Radeon 9600 XTTheo de Raadt
2004-11-24use ETHER_MAX_LENBrad Smith
2004-11-24kernfs caveats, ok deraadt@Ian Darwin
2004-11-24Multicast routing cleanup from Pavlin RadoslavovRyan Thomas McBride
- sync ip_mroute.c with NetBSD - import some FreeBSD changes to MFC entry handling - set im->im_vif correctly when sending IGMPMSG_WRONGVIF - increment mrtstat.mrts_upcalls correctly - return error from get_sg_cnt() if there is no matching forwarding entry ok henning@ brad@ naddy@
2004-11-24fix a bug that leads to a crash when binat rules of the formDaniel Hartmeier
'binat from ... to ... -> (if)' are used, where the interface is dynamic. reported by kos(at)bastard(dot)net, analyzed by Pyun YongHyeon
2004-11-24disable the layer filesystems by default; ok lots of peopleTheo de Raadt
2004-11-23fix name of libMarc Espie
2004-11-23tweaks;Jason McIntyre
ok damien@
2004-11-23add support for 2915ABG adaptersDamien Bergamini
2004-11-23Let gpio_detach() do something useful.Alexander Yurchenko
Tested by reyk@ on gpio@ath.
2004-11-23replace old net/if_ieee80211.h header with the net80211 ones, kernel part.Federico G. Schwindt
millert@ mcbride@ jsg@
2004-11-23syncDamien Bergamini
2004-11-23support PRO/Wireless 2915ABG; ok deraadt@Damien Bergamini