summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2007-12-15ips_odropped is ipOutDiscards not ipInDiscardsReyk Floeter
2007-12-15add support for ipReasmTimeoutGilles Chehade
ok (and thanks to) reyk@
2007-12-15implement one function to call the ipstat sysctl needed in a number ofReyk Floeter
places instead of repeating the code. inspired by an idea from gilles@
2007-12-15more sysctl style changes for older codeReyk Floeter
2007-12-15change the style of the sysctl mib setupReyk Floeter
2007-12-15now that ip statistics are available through sysctl, make snmpd's IP-MIBGilles Chehade
aware of them ok reyk@
2007-12-14I requested an official PEN for OpenBSD from the IANA because I wantedReyk Floeter
to use a new and unused one for OpenBSD-specific MIBs in snmpd. Now it's there: 30155. Private Enterprise Number: 30155 Organization Name: OpenBSD Project Contact Name: Reyk Floeter Contact E-mail: reyk@openbsd.org
2007-12-13more str fixes; from chl@Jakob Schlyter
2007-12-13str fixes; from chl@Jakob Schlyter
2007-12-13str fixes; from chl@Jakob Schlyter
2007-12-13struct kif is gone so adapt to the situation. show interface is gone forClaudio Jeker
now. OK norby@
2007-12-13Monster commit of stuff I did mostly last month. What it does:Claudio Jeker
* removes kif and uses iface for everything interface related. This removes unneeded data redundancy which makes the code more complex. * adds the link local prefix to struct iface and attaches a list with the other prefixes to the struct iface. This is needed to generate the link LSA. * disconnects struct iface from struct area (the backpointer is gone) this will make the reload code a bit easier. norby@ agrees with the direction we're heading with this
2007-12-12various improvements for the relay pages; ok reykJason McIntyre
2007-12-11rearrange the page to read better; ok otto henningJason McIntyre
2007-12-10add ip_mib table as well as support for retrieving ipForwarding andGilles Chehade
ipDefaultTTL ok reyk@
2007-12-10Warn the user when reloading a new configuration fails instead of killingPierre-Yves Ritschard
the daemon. ok reyk@
2007-12-09argh, remove crap from my last commitReyk Floeter
2007-12-09re-sort relayctl/relayd to the right placeReyk Floeter
2007-12-09nslookup(8) moved to nslookup(1)Jakob Schlyter
2007-12-09regen from named.docbookJakob Schlyter
2007-12-09merge our command line changes to docbookJakob Schlyter
2007-12-09more strcpy fixesJakob Schlyter
2007-12-09resolve conflictsJakob Schlyter
2007-12-09regen using autoconf 2.61Jakob Schlyter
2007-12-09resolve conflictsJakob Schlyter
2007-12-09ISC BIND release 9.4.2Jakob Schlyter
2007-12-09- kill trailing whitespaceJason McIntyre
- kill useless .Pp
2007-12-08Rename everything which reffered to services refer to rdr for internalsPierre-Yves Ritschard
(for instance: rename struct service to struct rdr), refer to redirects otherwise (hoststatectl output). ok reyk@
2007-12-08service -> redirectReyk Floeter
ok pyr@
2007-12-08the manpages need some more workReyk Floeter
2007-12-08tweakReyk Floeter
2007-12-08no need to pre-check for % in dformat, it will fail later anywaysTheo de Raadt
2007-12-08forgotten service -> redirectionPierre-Yves Ritschard
ok reyk@
2007-12-08make the generic handler for TCP-based protocols the default (allowsReyk Floeter
to use "protocol foo" without defining a type).
2007-12-08some changes to the relayd.conf configuration language and grammar.Reyk Floeter
the tables will look more like pf tables, it is easier to re-use tables with different options, "services" will become "redirections" (they refer to rdr pf rules), sync configuration directives of redirect (l3, ex-service) relay (l7) sections (for example "virtual host" will become "listen on"), all target definitions will start with "forward to", etc. pp. (see relay.conf(5) and etc/relayd.conf) discussed with pyr and deraadt ok pyr@
2007-12-08let pkg_info -E see @sample objects. No sense in hiding them.Marc Espie
2007-12-07document adjfreq(2);Jason McIntyre
based on an initial diff from Simon Kuhnle, and input from Joerg Sonnenberger; ok otto
2007-12-07implement a few more opcodes from acpi 3.0 and fix output in some cases.Federico G. Schwindt
dell d620 now shows the tree correctly. marco@ ok.
2007-12-07adjust the manpages to use "Relay daemon"Reyk Floeter
2007-12-07enter relayd/relayctl instead of hoststated/hoststatectlTheo de Raadt
2007-12-07hoststated/hoststatectl get repository copied (and de-tagged) intoTheo de Raadt
relayd/relayctl. This is a more suitable place for a daemon that has grown out of it's initial roots of "monitoring and redirecting services at various layers", into one that is "a full featured proxy, which happens to know what is up/down"
2007-12-07partial update of the man pages to new relayd nameTheo de Raadt
2007-12-07hoststated gets renamed to relayd. easier to type, and actually saysReyk Floeter
what the daemon does - it is a relayer that pays attention to the status of pools of hosts; not a status checkers that happens to do some relaying
2007-12-07remove unreduced rulesReyk Floeter
2007-12-07typeReyk Floeter
2007-12-07comparison betweem signed and unsignedReyk Floeter
2007-12-07add a new 'd' format to ber_printf_elements to pass ints instead ofReyk Floeter
long longs; you have to pass the right type with vargs. this finally fixes the previous problem on i386. discussed with claudio
2007-12-07unbreak snmpd on 32bit archs like i386Reyk Floeter
2007-12-06do not re-use static char buffers, allocate them; this avoids someReyk Floeter
strange effects in GETBULK mode. (this should go into ber.c).
2007-12-06correct bizzare function definitionTheo de Raadt