Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-27 | initial scaffolding for @rcscript: for now, acts like normal files, | Marc Espie | |
but allow absolute pathnames (treat that as an implicit @cwd). | |||
2010-10-26 | no need for .Pp before lists; | Jason McIntyre | |
2010-10-26 | redirects are loaded as "pass in quick ... rdr-to" pf rules by default. In | Reyk 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-26 | Implement the optional label request message ID TLV. | Claudio Jeker | |
Currently on the genaration side is done. | |||
2010-10-26 | For label release and withdraw messages make sure that a wildcard | Claudio 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-26 | struct mapping_entry should just have a struct map instead of own | Claudio 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-26 | Change 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-26 | Shuffle the deck chairs to make the code more compact. | Claudio Jeker | |
OK michele@ | |||
2010-10-26 | Allow the userPassword attribute to specify a login class when using | william | |
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) error | Marc Espie | |
out if we create them manually, instead of erroring later during pkg_add. | |||
2010-10-25 | document fullwidth | Marc Espie | |
2010-10-25 | use new system to do quiet | Marc Espie | |
2010-10-25 | don'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-25 | just bail out of producing empty files. | Marc Espie | |
*this will become an error eventually, please fix those* | |||
2010-10-25 | separate "Term" part from "Real progressmeter" handling, so that one can | Marc Espie | |
use the common part independently. | |||
2010-10-24 | spacing and irrelevant glitches which disrupt lint | Theo de Raadt | |
2010-10-24 | the subtype should be printed unsigned; ok claudio | Theo de Raadt | |
2010-10-24 | use 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-24 | redo ->system in a smarter way (fork+exec) so that we can sneak in a code | Marc Espie | |
reference to be run before the command. | |||
2010-10-23 | Reorder the wording where we talk about tagging kernel route table prefixes, | Stuart Henderson | |
following misc@ discussion with Tony Sarendal. ok phessler@ | |||
2010-10-22 | USE_GROFF | Marc Espie | |
2010-10-22 | Free attributes that just got allocated beforehands and do not hold any | Claudio Jeker | |
reference in case attr_optadd() errors out. Found by and diff provided by Igor Zinovik, OK henning@ | |||
2010-10-21 | Start implementing the missing lablemapping messages in the LDE and | Claudio Jeker | |
fix the existing ones to correctly track outstanding request and sent / recv mappings. Looks good to michele@ | |||
2010-10-20 | Since on shutdown fib_sync is forced to 1 to remove the multicast route | Claudio 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-19 | fix a split() which was causing problems with the mbox.5 manpage | Stuart Henderson | |
in Mutt, as noticed by Andreas Kahari. ok espie@ "we'll fix the fix if it breaks". | |||
2010-10-19 | Fix a segmentation fault when adding an attribute to an empty entry. | Martin Hedenfal | |
2010-10-19 | When 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-19 | Remember the bind DN after BSD authentication. This makes access control | Martin Hedenfal | |
work for SASL and BSDAUTH binds as it does for simple binds. | |||
2010-10-19 | before 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-18 | Revert non-compatible and undocumented bullshit commited by 3 developers | Theo 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-18 | Missing ; to appease yyextract, ok martinh@ | Stuart Henderson | |
2010-10-18 | Mention that commands may be abbreviated, as done in other *ctl manuals. | Stuart Henderson | |
ok gilles@ | |||
2010-10-18 | Missing semicolons to appease yyextract, ok gilles@ | Stuart Henderson | |
2010-10-18 | Missing semicolon, ok henning@ | Stuart Henderson | |
2010-10-17 | various tweaks for consistency; | Jason McIntyre | |
2010-10-17 | Add quirks support to operating system fingerprinting. tcpdump part | Joel Sing | |
by mcbride@. ok mcbride@ henning@ | |||
2010-10-15 | use standard list width; | Jason McIntyre | |
2010-10-15 | nicer formatting for the various synopses; | Jason McIntyre | |
2010-10-15 | document "openssl ts"; | Jason McIntyre | |
2010-10-15 | Rework the kroute framework of ldpd. ldpd is different from the other | Claudio 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-15 | return 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-15 | Switch the remaining users of libdes in src to libcrypto, | Jonathan Gray | |
telnet portion partially from the latest heimdal. ok mikeb@ | |||
2010-10-15 | typo in comment | Stuart Henderson | |
2010-10-15 | Add the FSM suberrors specified in draft-ietf-idr-fsm-subcode. This | Claudio Jeker | |
should help identifying FSM errors since the state is know known. OK henning@ sthen@ | |||
2010-10-15 | Add a few more wanrings to the UPDATE parser. Mainly to warn when | Claudio 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-14 | probabalistic -> probabilistic; from naddy | Jason McIntyre | |
2010-10-14 | Same fix as previously commited to ospfd. Ensure that kr_redistribute() | Claudio Jeker | |
is called with the head node of a multipath chain. | |||
2010-10-14 | kr_redistribute() needs to be called with the head node of a multipath | Claudio Jeker | |
chain. Fix kroute_insert() and rtmsg_process() to correctly do this. OK bluhm@ | |||
2010-10-14 | for openssl prime, note that results are probabalistic; from djm | Jason McIntyre | |
2010-10-13 | 'socket "path" [restricted]' needs quotes around path; make it clear | Stuart Henderson | |
in the manual. Help from jmc@. |