Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-05 | - fix possible use of uninitialized variable. | Jasper Lievisse Adriaanse | |
ok claudio@ | |||
2010-11-05 | If the base DN in a search request doesn't exist, return early. | Martin Hedenfal | |
2010-11-05 | When draining the input buffer of more than two complete requests, an | Martin Hedenfal | |
additional incomplete request would be truncated. This fixes the number of bytes consumed from the input buffer. | |||
2010-11-05 | Change to read better after suggestion from jmc. | Martin Hedenfal | |
2010-11-04 | Only LDAP version 3 is implemented. | Martin Hedenfal | |
2010-11-04 | Document the syntax of schema files. Only a brief synopsis of the attribute | Martin Hedenfal | |
type and object class syntax is given, the rest is referred to the RFC. | |||
2010-11-04 | Sync with tcpdump.org to fix multicast DNS support, and get some | Can Erkin Acar | |
other updates in the process. Initial report/patch from Christiano F. Haesbaert. Ok matthew@ | |||
2010-11-04 | Publish matching rules in the cn=schema subentry as the matchingRules | Martin Hedenfal | |
attribute. This is an operational attribute and only returned if explicitly asked for. Required by RFC 4517. | |||
2010-11-04 | Rewrite all packet parsers to be more careful about alignment. Until | Claudio Jeker | |
now ldpd had no chance to run on a strict alignment architecture but this makes ldpd happy on sparc64. Be careful to do all needed overflow checks and try to make all parsing functions look similar. OK michele@ | |||
2010-11-04 | Only consider pathes with highest priority when replying to label | Claudio Jeker | |
requests. Else a priority inversion may happen that would build label switching pathes that use inactive routes. OK michele@ | |||
2010-11-04 | Make sure we don't end up using /usr/src/etc if we forget to pass the | Antoine Jacoutot | |
correct option (e.g. 'sysmerge /tmp/etc48.tgz'). Use OPTIND as all args are handled by getopts we can catch misusage and we exit with an error. from Brian Poole, thanks. ok sthen@ | |||
2010-11-04 | badspec match_locations must return a ref, fixes pkg_add -nz bzr | Marc Espie | |
(sorry, I don't remember your name, I misplaced that email) | |||
2010-11-03 | Update the internal btree documentation to reflect the current api. | Martin Hedenfal | |
2010-11-03 | Validate matching rules against attribute syntaxes. All matching rules from | Martin Hedenfal | |
RFC 4517 are recognized, except the optional wordMatch and keywordMatch. Requires a current core.schema file. | |||
2010-11-03 | caseExactIA5Match is not an appropriate matching rule for directory strings | Martin Hedenfal | |
(syntax oid 1.3.6.1.4.1.1466.115.121.1.15). Use caseExactMatch instead. Prepares for upcoming validation of matching rules. | |||
2010-11-03 | $OpenBSD$ | Jonathan Gray | |
2010-11-03 | An index can now also be used for a presence filter. | Martin Hedenfal | |
2010-11-03 | Evaluate filters according to the three-valued logic of X.511, as required | Martin Hedenfal | |
by RFC 4511. A filter term can now be evaluated as undefined if the attribute description is not recognized, the attribute type doesn't define the appropriate matching rule, or the filtering is not implemented. This also implements the NOT filter in the query planner. | |||
2010-11-02 | Clarify the current state of ldapd as not fully LDAPv3 compliant. | Martin Hedenfal | |
2010-10-31 | cant start a line with a single quote. ok @schwarze | Janne Johansson | |
2010-10-29 | malloc -> calloc for ctl_conn | Henning Brauer | |
pt out by cppcheck/jasper, ok sthen claudio | |||
2010-10-29 | smtpd no longer knows a map called "secrets" which holds credentials for | Gilles Chehade | |
authenticated relaying. one can create many maps holding credentials and name them however he/she wants, just like any other map. teach smtpd how to select a credentials map at the rule-level allowing a setup to relay through the same MX with different credentials depending on the source. smtpd.conf.5 updated to reflect changes with help from jmc@ | |||
2010-10-28 | :-P | Marc Espie | |
2010-10-28 | more roff removal; | Jason McIntyre | |
2010-10-28 | teach smtpd how to handle per-rule delays for message expiry, this allows | Gilles Chehade | |
some rules to have a longer expiry delay than the default: accept for [...] relay expire 8d # will stay 8 days in queue I added the man page bits so I don't forget but I need to reword it a bit | |||
2010-10-28 | knock out some "-*- nroff -*-" lines; | Jason McIntyre | |
2010-10-28 | wording clarification; from Jan Stary | Jason McIntyre | |
ok deraadt | |||
2010-10-28 | this can't be right, as it takes out check_for_loops entirely... | Marc Espie | |
(fixes cyrus-sasl install/updates, but not deinstall yet) | |||
2010-10-27 | document @rcscript | Marc Espie | |
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 | |