summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-01-20regenMarcus Glocker
2008-01-20Add one more device which could work. Fix comment typo in usbdevs whileMarcus Glocker
there.
2008-01-19Add initial scaffold for RAID 0. No IO just yet.Marco Peereboom
Much prodding todd
2008-01-19Add more potentially supported devices. Reports are welcome.Marcus Glocker
2008-01-19promote rekeylimit to a int64 so it can hold the maximum useful limitDamien Miller
of 2^32; report and patch from Jan.Pechanec AT Sun.COM, ok dtucker@
2008-01-19some usb devices stale (getstring: ioctl: Input/output error) if aMarc Winiger
string is requested with language id 0, so we get the language table first and use the language id from there ok mglocker@
2008-01-19When we added support for specified bind addresses for port forwards, weDamien Miller
added a quirk SSH_OLD_FORWARD_ADDR. There is a bug in our handling of this for -L port forwards that causes the client to listen on both v4 and v6 addresses when connected to a server with this quirk, despite having set 0.0.0.0 as a bind_address. report and patch from Jan.Pechanec AT Sun.COM; ok dtucker@
2008-01-19unbreak line numbering (broken in revision 1.164), fix error messageDamien Miller
2008-01-19when hashing individual hosts (ssh-keygen -Hf hostname), make sure weDamien Miller
hash just the specified hostname and not the entire hostspec from the keyfile. It may be of the form "hostname,ipaddr", which would lead to a hash that never matches. report and fix from jp AT devnull.cz
2008-01-19fix remote handle leak in do_download() local file open error path;Damien Miller
report and fix from sworley AT chkno.net
2008-01-19ignore SIGPIPE in multiplex client mode - we can receive this if theDamien Miller
server runs out of fds on us midway. Report and patch from gregory_shively AT fanniemae.com
2008-01-19fd leak on session multiplexing error path. Report and patch fromDamien Miller
gregory_shively AT fanniemae.com
2008-01-19scp -q implies ssh -q for the underlying connection, it doesn't justDamien Miller
hush the progress meter
2008-01-19satisfy the pedants: -q does not suppress all diagnostic messages (e.g.Damien Miller
some commandline parsing warnings go unconditionally to stdout).
2008-01-19Fix add_net_randomness() not being called because the wrongMarco Pfatschbacher
bit in netisr is set. 1 != (1 << 1). Reported by mickey, fix by me. OK markus@, miod@, claudio@
2008-01-19Simplify CLKF_INTR by making it look at the saved interrupt level,Mark Kettenis
instead of the stack pointer.
2008-01-19When I say commented out, I should comment it out before comitting.Mark Kettenis
2008-01-19Add commented out entry for environ(4).Mark Kettenis
2008-01-19Remove printf that doesn't make sense.Marco Peereboom
2008-01-19Activate upgt(4) for macppc. Tested for a while on my PowerBook.Marcus Glocker
OK dlg@
2008-01-19Make host bridges provide their own implementation of pci_conf_read() andMark Kettenis
pci_conf_write() and give pyro(4) an implementation suitable for PCIe. For psycho(4) and schizo(4), go back to the origional implementation. This gets rid of the 'tagshift' member of pci_chipset_tag_t, and clears the way for sun4v.
2008-01-19Make the device work again on big endian archs (after firmware upgrade).Marcus Glocker
Tested on macppc.
2008-01-18kill strange workaround;Jason McIntyre
2008-01-18english nouns do not need to be capitalised;Jason McIntyre
sync fhc.4;
2008-01-18free oid data before overwriting itReyk Floeter
2008-01-18Print consoleness the canonical way.Mark Kettenis
2008-01-18Add LED support.Marcus Glocker
2008-01-18Mention environ(4).Mark Kettenis
2008-01-18Add environ(4).Mark Kettenis
2008-01-18Call store_options() with correct cutoff values, i.e. ones not 7 bytesKenneth R Westerback
too large. Fixes a problem where a nicely crafted packet could crash dhcpd. Nuke a superfluous declaration of store_options() while here. Problem found and fix tested by Peter Hessler. ok beck@ millert@ henning@
2008-01-18Add environ(4).Mark Kettenis
2008-01-18First attempt to write a driver for the environment device found onMark Kettenis
Enterprise 3000/3500/4000/4500/5000/5500/6000/6500.
2008-01-18implement very basic support of the BRIDGE-MIB which is enough to getReyk Floeter
recognized as a network device by some NMS.
2008-01-18fix descriptionReyk Floeter
2008-01-18parse ip addresses for trapsReyk Floeter
2008-01-18trap.cReyk Floeter
2008-01-18macpppc -> macppcStuart Henderson
ok jmc
2008-01-18fix stringval lengthReyk Floeter
2008-01-18add a snmpctl command to send traps to registered receivers usingReyk Floeter
snmpd's imsg trap interface.
2008-01-17swap argumentsReyk Floeter
2008-01-17the optional trap varbind elements may be nullReyk Floeter
2008-01-17Print names we get from the prom within double quotes.Mark Kettenis
ok marco@
2008-01-17Remove some #if;ed out code.Mark Kettenis
2008-01-17Fix RX queue stalling by regulary reading the device statistics (with aMarcus Glocker
firmware command). Doh! We can now reliable communicate in 11g. Took me about 3 weeks to find out (just had to say that).
2008-01-17Set if_baudrate with IF_Gbps(10);Thordur I. Bjornsson
ok dlg@
2008-01-17casts so this compiles on i386.Thordur I. Bjornsson
ok reyk
2008-01-17In ether_input() scheduling the soft interrupt and queueing theAlexander Bluhm
packet have to be protected by the same splnet. Otherwise on architectures where soft interrupts are executed immediately, the interrupt is processed before the packet is in the queue. On real hardware interfaces this was not a problem as ether_input() is called at splnet anyway. But when sending to a tun interface the packet got delayed. ok beck@ miod@ henning@ mpf@ markus@
2008-01-17allow to configure optional per trap receiver communities and toReyk Floeter
restrict the receivers to a specified mib.
2008-01-17add basic snmpv2 support (snmpv2, trapv2, getbulk)Reyk Floeter
ok canacar@
2008-01-17Use TCSAFLUSH instead of TCSANOW when turning echo back on so thatTodd C. Miller
there is no chance of output that was written but still pending to be displayed. This is what the original getpass(3) did.