summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2005-06-20use getopt(3) for argument list parsing and remove the get_number()Robert Nagy
function becasue we use strtonum(3) from now on. ok otto@ millert@
2005-06-20use getopt(3) for argument list parsing and remove the get_number()Robert Nagy
function becasue we use strtonum(3) from now on. ok otto@ millert@
2005-06-20flesh out the destdir() working. Provide a convenience close() method.Marc Espie
2005-06-20$OpenBSD -> $OpenBSD$Robert Nagy
ok henning@
2005-06-19use a #define for the time to wait on -s and clarify a log msgHenning Brauer
2005-06-19use a little state engine to keep track of delayed dns lookups and such,Henning Brauer
eases things tested by Jason Ackley <jason@ackley.net> Matthias Kilian <kili@outback.escape.de> Stephen Marley <stephen@marley.org.uk> sturm@ theo ok
2005-06-18maintain correspondence between original archive file names and rewrittenMarc Espie
names. Allows transparent rename & copy of hard links.
2005-06-18more sanity checks, don't truncate names silently.Marc Espie
2005-06-18fix prefix/name cut (found out by aanriot)Marc Espie
2005-06-17Extended Attributes was a piece to get to ACLs, however ACLs have notDale Rahn
been worked on, so EA is pointless to maintain.
2005-06-17support disassoc reason codesReyk Floeter
2005-06-17Extended Attributes was a piece to get to ACLs, however ACLs have notDale Rahn
been worked on, so EA is pointless to maintain.
2005-06-17formatting tweaks;Jason McIntyre
ok reyk@
2005-06-17first step to implement a proactive wireless monitoring system usingReyk Floeter
hostapd(8). it's a very simple but powerful approach using highly flexible and stateless event and action rules for IEEE 802.11 traffic. you can monitor a wireless network by watching frames with types and addresses (with support for tables and masks) and you can trigger actions like writing log messages, sending pcap/radiotap dumps to the IAPP network, removing nodes from the hostap, resending received frames and sending contructed 802.11 frames in reply to traffic received from any rogue nodes. it's based on some initial work from the c2k5 which has been tested and improved during the last weeks. some missing documentation for hostapd.conf(5) will be written as soon as possible. ok deraadt@
2005-06-16use getopt() for argument list parsingRobert Nagy
ok millert@ otto@
2005-06-16use prefixlen2mask which handles zero prefixlens rightHenning Brauer
2005-06-16use prefixlen2mask() instead of doing the bitshifting by hand; fixes theHenning Brauer
zero prefixlen case (32 bit shift on 32 bit val -> undefined result) spotted by Moritz Grimm and otto
2005-06-15remove SNMP code from mrouted(8) because it is broken and it isRobert Nagy
higly unlike that anyone will use this. ok otto@ millert@ henning@
2005-06-15zap usage of __LINE__ so we can do KNF without binary changes.Niall O'Higgins
ok henning@
2005-06-14add missing error check for decode_prefix4. ok deraadt@Moritz Jodeit
2005-06-14remove speaker handling code. if you really want this, use the /etc/apm/*Theo de Raadt
scripts to do it. as it is, for most people this is terribly annoying and unneccessary; toby ok
2005-06-14Don't unref something that is used later. send_rtmsg() will callClaudio Jeker
rtlabel_id2name() so call rtlable_unref() after that. OK henning@
2005-06-13route label support, kroute part and ID allocator as well as the internalHenning Brauer
interface changes. support in the filter language and rde to come. claudio ok
2005-06-13add copy method, and document it.Marc Espie
Note that it doesn't do any magic with hard links so far.
2005-06-13if this is not a `real' file, override the size entry with a zero.Marc Espie
2005-06-13realloc(3) correctly. Do not adjust the variable describing how much memoryClaudio Jeker
has been allocated until one knows the allocation has been successful.
2005-06-13fix archive header writing.Marc Espie
add pad() method to finish archives. With this, writing Ustar archives work.
2005-06-13almost working...Marc Espie
2005-06-13document how hardlink writes occur, plus cosmetic clean-ups.Marc Espie
2005-06-13$entry->{cwd} support while writing, for symetry.Marc Espie
2005-06-13we can determine if an entry will be stored as a HardLink at prepare() time,Marc Espie
so do it...
2005-06-13document the write API as well.Marc Espie
2005-06-13interface more symetric to reading.Marc Espie
2005-06-13UStar writer, all the flesh, thoroughly untested yet, reading unaffected...Marc Espie
2005-06-13provide reverse lookup services, as a simple extension (to be usedMarc Espie
to write UStar archives momentarily).
2005-06-13One additional if_act_elect bug. Neighbors in preliminary state (down, attemptClaudio Jeker
and init) are not electable not only neighbors that are in state down. OK norby@
2005-06-13Doh. Fix another stupid copy paste typo. Once again BDR != DR.Claudio Jeker
OK norby@
2005-06-13add a new fsm transition for IF_EVT_WTIMER in state IF_STA_ANY that simplyClaudio Jeker
ignores the event. This removes the warning "fsm_if: interface em0, event WAITTIMER not expected in state DROTHER" in case of a quick startup. OK norby@
2005-06-13start hello timer even if in state IF_STA_WAITING (this makes the startup muchClaudio Jeker
faster and follows the RFC more closely). OK norby@
2005-06-13simplify the fsm by moving all the checks that are done if the state changedClaudio Jeker
into one if (old_state != nbr->state) { block. OK norby@
2005-06-13Passive interfaces belong to the area and should be announced as stubClaudio Jeker
networks. Bug report and testing by Stephen Marley. While there kill an unneeded log_debug(). OK norby@
2005-06-13Compare neighbor address with DR/BDR from the hello packet and not withClaudio Jeker
the data from the last hello packet. OK norby@
2005-06-13Properly align the show rib output. flags is 5 chars long not 4.Claudio Jeker
2005-06-12strcat -> strlcatNikolay Sturm
ok tdeval
2005-06-12better synopsis.Marc Espie
2005-06-12test that archive->next() worked, and explicitly throw a `truncated archive'Marc Espie
message if it didn't work. Replaces messages like: Use of uninitialized value in string ne at /usr/libdata/perl5/OpenBSD/Add.pm lin e 344. Use of uninitialized value in join or string at /usr/libdata/perl5/OpenBSD/Error .pm line 67. Error: archive does not match != share/autoconf-2.13/acheaders with: Error: truncated archive
2005-06-10No point in keeping a list of file systems here, instead just refer toPedro Martelletto
whatever the kernel supports, okay deraadt@
2005-06-10Make sure that the ATTR_EXTLEN flag is unset if the attribute length isClaudio Jeker
smaller than 255 bytes.
2005-06-10Introduce attr_optlen() to get the total lenght of an optional attributeClaudio Jeker
plus header. Soon needed.
2005-06-10As we no longer send IMSG_CTL_SHOW_RIB_PREFIX from bgpd to bgpctl simplifyClaudio Jeker
show_rib_summary_msg().