summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2004-10-08whitespace both in comment; from berndHenning Brauer
2004-10-07use a static, const and prefilled u_int8_t[16] to check wether the markerHenning Brauer
at the beginning of each BGP message is all 1s instead of looping and comparing one by one
2004-10-07When printing attributes do not cast unsigned value to signed.Hans-Joerg Hoexer
ok & help otto ok deraadt henning markus
2004-10-05Use priority instead of facility in vsyslog()Marco Pfatschbacher
Pointed out by Peter Philipp. ok mcbride@
2004-10-05move expand down to ::ExeclikeActionMarc Espie
2004-10-05unbreak expandMarc Espie
2004-10-05explicitly call the right destate for ExtradirMarc Espie
2004-10-05more inheritance, reorder stuff slightlyMarc Espie
2004-10-05intermediate ::DirlikeObject class, so that all dir objects inherit fromMarc Espie
it, including ::DirRm.
2004-10-05make a list of all conflicts.Marc Espie
2004-10-05unbreak pure comments, handle @option at new level.Marc Espie
2004-10-05Let DirBase inherit from FileObjectMarc Espie
2004-10-05mark stuff as annotations. don't create ignore objects, since they areMarc Espie
proper annotations. ditch multiple inheritance for CVSTag, like ExtraInfo, since these being comments is more an historic artefact than anything else.
2004-10-05reject an all zero bgpid, following a similar suggestion fromHenning Brauer
pascal.gloor@spale.com
2004-10-05in client_addr_init() and client_nextaddr(), do not set up the socket andHenning Brauer
connect it, instead leave it at -1. in client_query, set up and connect the socket if it is -1. and, the real reason for this change: handle connect failures gracefully ok otto
2004-10-05derive ::PkgCfl from ::ConflictMarc Espie
2004-10-05basic destate for ::FileObject, derive ::Exec, ::Unexec, ::ExtraunexecMarc Espie
from ::ExeclikeAction
2004-10-05unique objects only need to override add_object.Marc Espie
2004-10-05fullname and mode stuff only concerns ::ObjectMarc Espie
2004-10-05Only ::FileObject need to do the dirclass test, other objects don'tMarc Espie
become dirs/
2004-10-05NoDuplicateNames = 1 is a ::FileObject propertyMarc Espie
2004-10-04Use poll(2) and svc_getreq_poll(2). Tested by matthieu@, ok deraadt@Todd C. Miller
2004-10-04link FileObject, State, Action.Marc Espie
2004-10-04link `Meta/Unique' class hierarchy. Ditch some common code.Marc Espie
2004-10-04basic class hierarchy to cut up packing-list items into better groups.Marc Espie
2004-10-04Add Fatal/Warn routines: for now, they do nothing more than die/print STDERR,Marc Espie
but they can get better.
2004-10-04fix bogus indentationMarc Espie
2004-10-04do not take the average offset from all peers when calculating the totalHenning Brauer
offset to correct the local clock, but use the median. given a reasonable sized set of servers this makes us nearly immune against outliers or flasetickers, without the need for a horribly complicated outliers detection which does not yield to better results anyway. test & ok otto
2004-10-01if we're opening a socket for a default listener because no "listen on"Henning Brauer
stetements were found in the config file, and one fails with EPROTONOSUPPORT (this is the case for the default ::1 listener on machines without INET6), remove that listener and move on instead of bailing out. ok claudio
2004-10-01add some missing $, ok djm@ 'That looks fine to me' millert@Jonathan Gray
2004-09-30Avoid a segfault if only whitespace characters are entered at theTodd C. Miller
lpc> prompt and fix an off by one when splitting a line into an argument vector. Based on a patch from Patrick Latifi. OK otto@
2004-09-30If the yp marker is in the file, add new users before it. PR 3727.Otto Moerbeek
ok deraadt@ millert@
2004-09-30now that we connect() the client sockets we need to handle ECONNREFUSED asHenning Brauer
non-fatal too, from camield@
2004-09-29s/sprintf/snprintf/Jakob Schlyter
2004-09-29fix return valueJakob Schlyter
2004-09-29fix remaining sprintfJakob Schlyter
2004-09-29fix som s/sprintf/snprintf/ lost in transitionJakob Schlyter
2004-09-28wrong macros; from number six;Jason McIntyre
2004-09-28Simpler loop to free queue items. OK otto@Todd C. Miller
2004-09-28fix lib/bind cleaning cruftJakob Schlyter
2004-09-28resolve conflictsJakob Schlyter
2004-09-28remove unused filesJakob Schlyter
2004-09-28ISC BIND version 9.3.0. ok deraadt@Jakob Schlyter
2004-09-28Fix leaks in error paths. from Patrick Latifi. ok millert@Otto Moerbeek
2004-09-28gcc-ism. We don't want it, we don't need it.Claudio Jeker
OK henning@ noticed by deraadt@
2004-09-28one m is enough in incoming, really ;)Henning Brauer
2004-09-28Add prepend-neighbor feature. Prepend the remote-as n times similar toClaudio Jeker
prepend-self. Only for incomming UPDATEs. OK henning@
2004-09-27mention how SIGHUP is handled.Jared Yanovich
from Michael Knudsen. ok mcbride
2004-09-24pass segment size to userland; ok deraadt@Markus Friedl
2004-09-24connect() the client-side sockets. idea & test & ok camield@Henning Brauer