summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-10-05Until now AS-ext LSA were always announced with the router as nexthop.Claudio Jeker
Change this so that the real nexthop is announced if the following conditions are met: - the nexthop is reachable via an OSPF enabled interface - the interface is a broadcast or NBMA interface It does not make sense to announce the nexthop of a point-to-point link since the traffic has to go through this box anyway. This is closer to what other systems implement.
2009-10-05add -d flag. When started in server mode, if the -d flag isAlexandre Ratchov
used aucat and midicat don't daemonize and log on stderr.
2009-10-05syncTheo de Raadt
2009-10-05missing includesTheo de Raadt
2009-10-04syncTheo de Raadt
2009-10-04tweak previous;Jason McIntyre
2009-10-04Merge over a bunch of detach logic from msk(4) so that this driver canTheo de Raadt
detach as well ok kettenis
2009-10-04Correctly store the tag results from bus_dmamem_alloc() so that theTheo de Raadt
detach routine can free the right resources ok dlg kettenis
2009-10-04Typo: chance -> changeAntoine Jacoutot
ok millert@
2009-10-04pull in wbsd conditionally; ok kettenisTheo de Raadt
2009-10-04Add (again) support for divert sockets. They allow you to:Michele Marchetto
- queue packets from pf(4) to a userspace application - reinject packets from the application into the kernel stack. The divert socket can be bound to a special "divert port" and will receive every packet diverted to that port by pf(4). The pf syntax is pretty simple, e.g.: pass on em0 inet proto tcp from any to any port 80 divert-packet port 1 A lot of discussion have happened since my last commit that resulted in many changes and improvements. I would *really* like to thank everyone who took part in the discussion especially canacar@ who spotted out which are the limitations of this approach. OpenBSD divert(4) is meant to be compatible with software running on top of FreeBSD's divert sockets even though they are pretty different and will become even more with time. discusses with many, but mainly reyk@ canacar@ deraadt@ dlg@ claudio@ beck@ tested by reyk@ and myself ok reyk@ claudio@ beck@ manpage help and ok by jmc@
2009-10-04When IKE is operating in dynamic mode and no srcid is given, the hostnameJoel Sing
is used as the srcid, however the srcid type is not specified. Rectify this by explicitly setting the srcid type to FQDN after successfully retrieving the hostname. This worked prior to the addition of IPV4_ADDR/IPV6_ADDR support since get_id_type() returned ID_FQDN even when presented with a null pointer. Issue reported by Mikolaj Kucharski.
2009-10-04tweak previous; ok kettenisJason McIntyre
2009-10-04tweak previous;Jason McIntyre
2009-10-04Get / and ? the right way round in vi mode, and use : for goto line rather thanNicholas Marriott
g.
2009-10-04Check for already locked/suspended clients in server_lock_client rather thanNicholas Marriott
its callers.
2009-10-04Add a key string for space ("Space") and document the names, suggested byNicholas Marriott
guenther@. Also document how to bind " and ', suggested by miod@.
2009-10-04C-v and M-v too.Nicholas Marriott
2009-10-04Support C-n/C-p with emacs keys in choice mode, also fix a comment.Nicholas Marriott
2009-10-04syncTheo de Raadt
2009-10-04add netbsd 5.0Jason McIntyre
2009-10-04add netbsd 5.0Jason McIntyre
2009-10-04partial syncTheo de Raadt
2009-10-03Properly handle XMM exceptions instead of panicing the kernel. Fixes theMark Kettenis
issue reported by Slava Pestov. ok deraadt@
2009-10-03.Xr wbsd(4)Mark Kettenis
2009-10-03wbsd(4)Mark Kettenis
2009-10-03Glue to attach the SD/MCC reader of the W83L519D found on some TadpoleMark Kettenis
laptops.
2009-10-03Driver for the SD/MMC part of the Winbond W83L518D/W83L519D Integrated MediaMark Kettenis
Reader.
2009-10-03Add missing <sys/device.h>.Mark Kettenis
ok deraadt@, miod@
2009-10-03Avoid NULL dereference when the final RCPT TO is refused.Jacek Masiulaniec
Reported by Didier Wiroth <dwiroth@gmail.com>
2009-10-03dont dereference garbage pointer, from martynas@Jacek Masiulaniec
2009-10-03syncTheo de Raadt
2009-10-03remove inconsistent trailing / for 2nd level mirrorsStuart Henderson
2009-10-03sync with mirrors.dat updates, requested by deraadt@Stuart Henderson
2009-10-02remove trash left in debug changes; lindroos@nls.fiTheo de Raadt
2009-10-02Sync with recent changes. From Brad.Stuart Henderson
2009-10-02syncStuart Henderson
2009-10-02Remove BCM57720 as it's not going to be released. From a BroadcomStuart Henderson
commit to the Linux driver via Brad. Also checked dmesglog.
2009-10-02Remove BCM57720 as it's not going to be released. From a BroadcomStuart Henderson
commit to the Linux driver via Brad.
2009-10-02Support for DS15/DS25/ES45 (Titan) alpha models (rpb family 38). These systemsMiod Vallat
are very close to the Tsunami systems (rpb family 34) and share the existing Tsunami code; the tsc(4) Tsunami controller code is extended to handle the Titan differences, except for the Titan AGP GART which is left unsupported for now. Tested to not cause regressions on DS20 (deraadt@) and ES40 (miod@). Titan support tested by Sergey Prysiazhnyi on DS25, many thanks for your time!
2009-10-02Link the kernel at a higher physical address, in order to accomodate SRMMiod Vallat
with larger footprint than the usual 2MB, as encountered on some of the most recent alpha systems. Tested on many models (DEC 3000, PC164, AS500, ES40, and more)
2009-10-02Some 21264CB pass information, from information provided by Sergey Prysiazhnyi.Miod Vallat
2009-10-02regenMiod Vallat
2009-10-02One more DEC device found on alpha clustersMiod Vallat
2009-10-02Use BSD.x11.dist mtree file now that it is up-to-date and maintained.Antoine Jacoutot
ok sthen@
2009-10-02- mention rb600a supportJasper Lievisse Adriaanse
ok kettenis@
2009-10-02- tweakJasper Lievisse Adriaanse
2009-10-02add notes for for OpenBSD/palm still a bit rough, but it's a startJasper Lievisse Adriaanse
parts from and "seems ok" marex@
2009-10-01add fdt_parent_node() and OF_parent() functions,Dariusz Swiderski
as requested by kettenis@ ok by kettenis@
2009-10-01Generic soft interrupts for macppc. Tested by mk@, deraadt@Mark Kettenis
ok miod@