summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2010-10-27initial scaffolding for @rcscript: for now, acts like normal files,Marc Espie
but allow absolute pathnames (treat that as an implicit @cwd).
2010-10-26no need for .Pp before lists;Jason McIntyre
2010-10-26redirects are loaded as "pass in quick ... rdr-to" pf rules by default. InReyk Floeter
some cases it is desired to load the rules as "match in" without "quick" to allow additional filtering or applying additional rule/state options, eg. to add an overload table for DOS mitigation. Add the optional "match" keyword for the redirect "tag" option to change the pf rule type accordingly. ok jsg@ mikeb@
2010-10-26Implement the optional label request message ID TLV.Claudio Jeker
Currently on the genaration side is done.
2010-10-26For label release and withdraw messages make sure that a wildcardClaudio Jeker
FEC is the one and only FEC of that message. This is required by the RFC. While it is not correct to have multiple FEC in anything but label mapping messages ldpd will accept those since the RFC is extra vague about this feature and it does not hurt.
2010-10-26struct mapping_entry should just have a struct map instead of ownClaudio Jeker
definition of a FEC mapping. This makes extending struct map simpler and makes it possible to access the additional data in struct map.
2010-10-26Change lde_check_request(), lde_check_mapping(), lde_send_labelmapping(),Claudio Jeker
lde_send_labelrequest(), and lde_nbr_do_mappings() to follow the algorithms defined in Appendix A of RFC 5036. Added comments and markers for better understanding and to find missing bits. OK michele@
2010-10-26Shuffle the deck chairs to make the code more compact.Claudio Jeker
OK michele@
2010-10-26Allow the userPassword attribute to specify a login class when usingwilliam
simple binds with BSD Authentication, using '#' as the delimiter, such as: userPassword: {BSDAUTH}username#loginclass Useful for auth modules that require parameters such as login_radius. ok martinh
2010-10-25@symlink/@size/@link are generated automatically, make pkg_create(1) errorMarc Espie
out if we create them manually, instead of erroring later during pkg_add.
2010-10-25document fullwidthMarc Espie
2010-10-25use new system to do quietMarc Espie
2010-10-25don't use the fullwidth of the term by default, makes typing easier.Marc Espie
pass state thru so that we can check in /etc/pkg.conf and use it if we want.
2010-10-25just bail out of producing empty files.Marc Espie
*this will become an error eventually, please fix those*
2010-10-25separate "Term" part from "Real progressmeter" handling, so that one canMarc Espie
use the common part independently.
2010-10-24spacing and irrelevant glitches which disrupt lintTheo de Raadt
2010-10-24the subtype should be printed unsigned; ok claudioTheo de Raadt
2010-10-24use newer system for more efficient redirection, and chdir the way man(1)Marc Espie
does, so groff is happier with .so. (agreed by ingo)
2010-10-24redo ->system in a smarter way (fork+exec) so that we can sneak in a codeMarc Espie
reference to be run before the command.
2010-10-23Reorder the wording where we talk about tagging kernel route table prefixes,Stuart Henderson
following misc@ discussion with Tony Sarendal. ok phessler@
2010-10-22USE_GROFFMarc Espie
2010-10-22Free attributes that just got allocated beforehands and do not hold anyClaudio Jeker
reference in case attr_optadd() errors out. Found by and diff provided by Igor Zinovik, OK henning@
2010-10-21Start implementing the missing lablemapping messages in the LDE andClaudio Jeker
fix the existing ones to correctly track outstanding request and sent / recv mappings. Looks good to michele@
2010-10-20Since on shutdown fib_sync is forced to 1 to remove the multicast routeClaudio Jeker
it needs to be set to 0 afterwards again, because the FIB was decoupled right before and now no "route vanished before delete" messages are printed on shutdown.
2010-10-19fix a split() which was causing problems with the mbox.5 manpageStuart Henderson
in Mutt, as noticed by Andreas Kahari. ok espie@ "we'll fix the fix if it breaks".
2010-10-19Fix a segmentation fault when adding an attribute to an empty entry.Martin Hedenfal
2010-10-19When checking if the input buffer is large enough to hold an LDAP request,Martin Hedenfal
compare with available space, not the total space. This fixes rejection of messages when there are multiple requests queued in the input buffer.
2010-10-19Remember the bind DN after BSD authentication. This makes access controlMartin Hedenfal
work for SASL and BSDAUTH binds as it does for simple binds.
2010-10-19before running groff, create dir when needed.Marc Espie
fixes tcl and the few ports with non-standard man locations that can't rely on mtree fake. as noticed by brad@
2010-10-18Revert non-compatible and undocumented bullshit commited by 3 developersTheo de Raadt
who decided to just do it on their own. henning, mcbride, jsing -- shame on you -- if you had shown this diff to just 1 other network developer, the astounding mistake in it would have been noticed. Start practicing inclusionary development instead of going alone. ok claudio
2010-10-18Missing ; to appease yyextract, ok martinh@Stuart Henderson
2010-10-18Mention that commands may be abbreviated, as done in other *ctl manuals.Stuart Henderson
ok gilles@
2010-10-18Missing semicolons to appease yyextract, ok gilles@Stuart Henderson
2010-10-18Missing semicolon, ok henning@Stuart Henderson
2010-10-17various tweaks for consistency;Jason McIntyre
2010-10-17Add quirks support to operating system fingerprinting. tcpdump partJoel Sing
by mcbride@. ok mcbride@ henning@
2010-10-15use standard list width;Jason McIntyre
2010-10-15nicer formatting for the various synopses;Jason McIntyre
2010-10-15document "openssl ts";Jason McIntyre
2010-10-15Rework the kroute framework of ldpd. ldpd is different from the otherClaudio Jeker
routing daemons. Change the way the kroute tree is indexed (by FEC with a linked list in case there is a priority conflict -- same route + nexthop at different priorities). This needs a mpath capable MPLS routing table. Still work in progress but works a lot better in close meshed networks.
2010-10-15return numeric 0 rather than attempting to return a null string,Stuart Henderson
fixes a segfault when walking memiftable. seems sane to phessler, ok dlg@
2010-10-15Switch the remaining users of libdes in src to libcrypto,Jonathan Gray
telnet portion partially from the latest heimdal. ok mikeb@
2010-10-15typo in commentStuart Henderson
2010-10-15Add the FSM suberrors specified in draft-ietf-idr-fsm-subcode. ThisClaudio Jeker
should help identifying FSM errors since the state is know known. OK henning@ sthen@
2010-10-15Add a few more wanrings to the UPDATE parser. Mainly to warn whenClaudio Jeker
attributes are ignored or UPDATEs are invalidated and withdrawn. While there use % to check if a attribute is a multiple of X. OK henning@, sthen@
2010-10-14probabalistic -> probabilistic; from naddyJason McIntyre
2010-10-14Same fix as previously commited to ospfd. Ensure that kr_redistribute()Claudio Jeker
is called with the head node of a multipath chain.
2010-10-14kr_redistribute() needs to be called with the head node of a multipathClaudio Jeker
chain. Fix kroute_insert() and rtmsg_process() to correctly do this. OK bluhm@
2010-10-14for openssl prime, note that results are probabalistic; from djmJason McIntyre
2010-10-13'socket "path" [restricted]' needs quotes around path; make it clearStuart Henderson
in the manual. Help from jmc@.